码迷,mamicode.com
首页 > 数据库 > 详细

查询数据库所有表和字段及其注释(mysql)

时间:2017-06-19 13:03:25      阅读:319      评论:0      收藏:0      [点我收藏+]

标签:表名   space   nbsp   join   key   order by   orm   mysql   ace   

#查询某个库所有表
select * from information_schema.TABLES
where table_schema = ‘数据库‘
#查询某个库所有表的字段
select * from information_schema.COLUMNS
where table_schema = ‘数据库‘
 
#查询所有表的注释和字段注释
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 = ‘数据库‘
ORDER BY
a.table_name
 

查询数据库所有表和字段及其注释(mysql)

标签:表名   space   nbsp   join   key   order by   orm   mysql   ace   

原文地址:http://www.cnblogs.com/xphdbky/p/7047878.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!