修改表注释和字段注释
修改表注释
修改表注释的语法:
alter table 表名 comment ='修改后的表注释';
案例:修改 student 的表注释:
alter table student comment ='学生表 V2';
执行结果如下图所示:
修改字段注释
修改表注释的语法:
alter table 表名 modify column 字段名 int comment '注释信息';
案例:修改 student 表中 name 的注释:
alter table student modify column username int comment '学生姓名 V2';
执行结果如下图所示: