mysql给表加注释
时间: 2023-11-05 18:59:54 浏览: 129
在MySQL中,可以通过添加comment属性来给表加注释。在创建表的脚本中,可以在字段定义脚本中使用comment属性来添加注释。示例如下:
create table test(
id int not null default 0 comment '用户id'
) comment='表的注释';
如果是已经建好的表,可以使用修改字段的命令,然后加上comment属性定义,来添加注释。示例如下:
alter table test change column id id int not null default 0 comment '测试表id';
要查看已有表的所有字段的注释,可以使用命令:show full columns from table 来查看。示例如下:
show full columns from test;
阅读全文