说明
在mysql中,information_schema这个数据库中保存了mysql服务器所有数据库的信息。
包括数据库名,数据库的表,表字段的数据类型等。
也就是说,我们想知道mysql中有那些库,那些表,表里面有那些字段以及他们的注释,
都可以从information_schema中获取。
1.查看数据库所有表名及注释
SELECT
table_name name,
table_comment comment
FROM
information_schema.TABLES
WHERE
table_schema = '数据库名'
2.查看数据库所有表及字段的注释
SELECT
distinct
a.table_name name,
a.table_comment comment,
b.COLUMN_NAME columnName,
b.column_comment columnComment,
b.column_type columnType,
b.column_key columnKey
FROM
information_schema.TABLES a
LEFT JOIN information_schema.COLUMNS b ON a.table_name = b.TABLE_NAME
WHERE
a.table_schema = '数据库名'
3.查看指定表的字段及注释
SELECT
distinct
a.table_name name,
a.table_comment comment,
b.COLUMN_NAME columnName,
b.column_comment columnComment,
b.column_type columnType,
b.column_key columnKey
FROM
information_schema.TABLES a
LEFT JOIN information_schema.COLUMNS b ON a.table_name = b.TABLE_NAME
and a.TABLE_SCHEMA = b.TABLE_SCHEMA
WHERE
a.table_schema = 'demo'
and a.table_name = 'user'
参考文章:MySQL information_schema 详解