搬瓦工VPSMySQL中alter用法大全1:删除列 alter table 【表名】 drop 【列名】 2:增加列 alter table 【表名】 add 【列名】 int not null comment '注释说明' 3:修改列的类型信息 alter table 【表名】modify 【列名】 char(10) 4:重命名列 alter table 【表名】【列名称】【新...赞 (0)2020-12-05 14:48:14阅读(2659)标签:alter / mysql / 大全 / 用法