mysql给属性添加注释的示例:
mysql创建新表的脚本时添加。
create table test(id int not null default 0 comment '用户id')
id int not null default 0 comment '用户id'
)
如果是已经建好的表,可修改字段的命令,然后加上comment属性定义即可。
alter table testchange column id id int not null default 0 comment '测试表id'
change column id id int not null default 0 comment '测试表id'