添加注释:
alter table 表名 modify column 列名 类型(如:int ) 是否为空(not null ) 默认值defalut (0) comment ' 你的注释 '
添加列并且注释:
alter table 表名 add 列名 类型(如:int ) 是否为空(not null ) 默认值defalut (0) comment ' 你的注释 '
表注释:
alter table 表名 comment '你的注释'
查看注释:
show create table 表名称;
show full columns from 表名称;