1. 程式人生 > >Mysql 語句

Mysql 語句

not null rop spa har drop 宋體 after alter tab

添加一列
alter table 表名 add column 列名 varchar(20) not null;


添加一列在某列的後面

alter table 表名 add column 列名 varchar(20) not null after user1;


添加一列在最前面

alter table 表名 add column 列名 varchar(20) not null first;


刪除一列

alter table yusheng drop column def ;

Mysql 語句