1. 程式人生 > >修改表中列

修改表中列

修改列名

alter table 表名 rename column 舊列名 to 新列名;

修改列型別

alter table 表名 modify (列名varchar(255));

刪除表某一列

alter table 表名 drop column 列名

給表增加一列

alter table 表名 add 列名 型別 default 值 < not null>;