MySql 添加表或字段的备注信息

MySql 添加表或字段的备注信息,第1张

1.创建表时添加表已经字段的备注,如下:

create table t_table (

d int primary key comment '主键'

) comment = 'table表';

2.表已经创建完毕,此时添加对表的备注

alter table table_name comment '备注信息';

3.添加对字段的备注

alter table table_name modify column c_name varchar(30) not null comment '备注信息';

备注:我们在这里添加对字段的备注信息时,不要只顾着写其备注而忽略了字段的完整定义,如类型,属性...

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/991809.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-21
下一篇 2022-05-21

发表评论

登录后才能评论

评论列表(0条)

保存