修改表名:alter table 旧表名 rename 新表名;
删除字段:alter table 表名 drop 字段名;
增加字段:alter table 表名 add 字段名 字段类型 [default 默认值 comment '字段注释']
修改字段名:alter table 表名 change 旧字段 新字段 字段类型 comment '字段说明';
修改字段说明:alter table 表名 modify column 字段名 字段类型 comment '注释';
2022-11-23 23:06:54
修改表名:alter table 旧表名 rename 新表名;
删除字段:alter table 表名 drop 字段名;
增加字段:alter table 表名 add 字段名 字段类型 [default 默认值 comment '字段注释']
修改字段名:alter table 表名 change 旧字段 新字段 字段类型 comment '字段说明';
修改字段说明:alter table 表名 modify column 字段名 字段类型 comment '注释';