1、根据表名查询哪些库中存在该表
select table_schema from information_schema.tables where table_name = '表名';
2、根据字段名查询哪些库中的表存在该字段
select table_schema,table_name from information_schema.columns where column_name = '字段名';
2021-09-08 22:28:47
1、根据表名查询哪些库中存在该表
select table_schema from information_schema.tables where table_name = '表名';
2、根据字段名查询哪些库中的表存在该字段
select table_schema,table_name from information_schema.columns where column_name = '字段名';