用法

搬瓦工VPS

MySQL中alter用法大全

1:删除列 alter table 【表名】 drop 【列名】 2:增加列 alter table 【表名】 add 【列名】 int not null comment '注释说明' 3:修改列的类型信息 alter table 【表名】modify 【列名】 char(10)  4:重命名列 alter table 【表名】【列名称】【新...
赞 (0)阅读(2244)