Mysql--表注释,字段注释

2022/5/31 2:20:02

本文主要是介绍Mysql--表注释,字段注释,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

information_schema数据库是MySQL数据库自带的数据库,里面存放的MySQL数据库所有的信息,包括数据表、数据注释、数据表的索引、数据库的权限等等。

1、添加表、字段注释

create table test
(
  cluster_id varchar(40) NOT NULL COMMENT '''集群id''',
  cluster_name varchar(100) NOT NULL COMMENT '''集群名''',
  PRIMARY KEY (`cluster_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT = '集群信息';

 

2、修改表注释

alter table test COMMENT '集群信息2';

 

3、修改字段注释(修改时要把该字段的完整定义写上,如字段类型、属性等,不能因修改注释,而把该字段定义的其它属性给覆盖掉了)

alter table test modify column cluster_id varchar(40) NOT NULL COMMENT '''集群id2''',

 

4、查询

#查看单个表的字段注释
show full columns from test;

#查看所有表的表注释
select table_name 表名,
table_comment 表注释 
from information_schema.tables 
where table_schema = 'DB_name';

#查看表的所有字段注释
select column_name 字段名,
column_comment 字段注释,
column_type 字段类型,
column_key 约束 
from information_schema.columns 
where table_schema='DB_name' and table_name='test';

#查看所有表的表注释及字段注释
SELECT
a.table_name 表名,
a.table_comment 表说明,
b.COLUMN_NAME 字段名,
b.column_comment 字段说明,
b.column_type 字段类型,
b.column_key 约束
FROM
information_schema. TABLES a
LEFT JOIN information_schema. COLUMNS b ON a.table_name = b.TABLE_NAME
WHERE
a.table_schema = 'DB_name'
ORDER BY
a.table_name

 



这篇关于Mysql--表注释,字段注释的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程