MySQL建立表常用語句(持續更新中)

2021-07-10 18:22:33 字數 449 閱讀 2053

最近因工作需要,開始學習mysql,此文作為學習記錄,以備自己查閱。

1. 建立表

create table userinfo 

id int(4) primary key not null auto_increment,     #自增列,如果只此一列,需定為主鍵,否則建立不成功

username varchar(50) not null,                                   #使用者名列,普通增加varchar欄位方法

createtime timestamp null default current_timestamp on update current_timestamp,   #預設值為當前時間的列

updatetime datetime null                                             #日期字段型別

mysql常用語句 MySQL常用語句

create table student id int primary key auto increment comment 學號 name varchar 200 comment 姓名 age int comment 年齡 comment 學生資訊 修改表注釋 alter table studen...

總結MySQL常用語句(持續更新)

一 基礎記錄資料 常數列的最大值 select max article as article from shop 獲取某列最大值的行 select from shop where price select max article from shop 按組排列的最大值 select article,m...

php mysql 常用語句 mysql常用語句

一 修改mysql使用者密碼 mysql h localhost u root p 命令列登入 update user set password password 123456 where user root 二 資料庫操作 show databases 顯示資料庫 create database ...