MySQL comment

1.创建表的时候写注释 

create table test1{

field_name int comment '字段的注释'

} comment='表的注释';

2.修改表的注释

alter table test1 comment '修改后的表的注释 '

3.修改字段的注释 

alter table test1 modify column field int comment '修改后的字段的注释 ';

 

 

最后欢迎大家访问我的个人网站:1024s

你可能感兴趣的:(数据库系统)