MySQL:添加和查看表注释、字段注释
【摘要】 添加注释
创建表的时候写注释
create table student
(
name varchar(20) comment '字段的注释',
age int comment '字段的注释'
)comment='表的注释';
12345
修改注释
修改表的注释
alter table student comment '修改后的表的注释';
1
修改字段的...
添加注释
创建表的时候写注释
create table student
(
name varchar(20) comment '字段的注释',
age int comment '字段的注释'
)comment='表的注释';
- 1
- 2
- 3
- 4
- 5
修改注释
修改表的注释
alter table student comment '修改后的表的注释';
- 1
修改字段的注释
alter table student
modify column name varchar(20) comment '修改后的字段注释';
--注意:字段名和字段类型照写就行
- 1
- 2
- 3
查看注释
查看表注释的方法
--在生成的SQL语句中看
show create table student;
--在元数据的表里面看
use information_schema;
select * from TABLES where TABLE_SCHEMA='demo' and TABLE_NAME='student' \G
- 1
- 2
- 3
- 4
- 5
- 6
查看字段注释的方法
--show
show full columns from student;
--在元数据的表里面看
select * from COLUMNS where TABLE_SCHEMA='demo' and TABLE_NAME='student' \G
- 1
- 2
- 3
- 4
- 5
文章来源: pengshiyu.blog.csdn.net,作者:彭世瑜,版权归原作者所有,如需转载,请联系作者。
原文链接:pengshiyu.blog.csdn.net/article/details/89319738
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)