6

查询 MySQL 所有数据库中的表名和字段名

 2 years ago
source link: https://www.sulinehk.com/post/query-table-and-field-names-in-all-mysql-databases/
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
neoserver,ios ssh client

查询 MySQL 所有数据库中的表名和字段名

2021-05-13

因为需要熟悉公司的新业务,而公司的数据库架构是根据表的字段来区分的多租户架构,会有很多业务库混在一起,导致了需要查某个字段的时候会比较麻烦。

MySQL Logo

MySQL 的 information_schema 库中有以下字段:

  • table_schema:数据库名;
  • table_name:表名;
  • column_name:字段名;
SELECT * FROM information_schema.TABLES WHERE table_name = 'table1';

TABLES 必须是大写,不然会导致冲突。

查询字段名

SELECT * FROM information_schema.columns WHERE table_schema = 'schema1' AND column_name LIKE '%field1%';

也可以加上 table_name 的条件:

SELECT * FROM information_schema.columns WHERE table_schema = 'schema1' AND table_name = 'table1' AND column_name LIKE '%field1%';

文章作者 sulinehk

上次更新 2021-05-13

许可协议 CC BY-NC-ND 4.0

Golang 查找整个数据库中存在的数据类型

可重复执行的 MySQL 常用存储过程


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK