900字范文,内容丰富有趣,生活中的好帮手!
900字范文 > MySQL 获取所有库名 表名 字段名

MySQL 获取所有库名 表名 字段名

时间:2021-09-16 08:07:13

相关推荐

MySQL 获取所有库名 表名 字段名

存放表名和库名的对应

select * from information_schema.tables

存放字段名和表名和库名的对应

select * from information_schema.columns

查询库名

SELECTtable_schema FROMinformation_schema.tables GROUP BYtable_schema-- -- -- -- -- -- -- -- -- -- -- -- -- -- SELECTtable_schema FROMinformation_schema.COLUMNS GROUP BYtable_schema

查询指定库的表名

SELECT TABLE_NAME FROMinformation_schema.tables WHEREtable_schema = 'information_schema'-- -- -- -- -- -- -- -- -- -- -- -- -- -- SELECT TABLE_NAME FROMinformation_schema.COLUMNS WHEREtable_schema = 'information_schema' GROUP BYTABLE_NAME

查询指定库指定表的字段名

SELECTcolumn_name FROMinformation_schema.COLUMNS WHEREtable_schema = 'information_schema' AND table_name = 'columns'

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。