mysql根据表名或字段名查询表或字段所在库

1、根据表名查询哪些库中存在该表

select table_schema from information_schema.tables where table_name = '表名';

2、根据字段名查询哪些库中的表存在该字段

select table_schema,table_name from information_schema.columns where column_name = '字段名';
上一篇:hive 取中位数的两种方式


下一篇:AcWing 1762. 牛的洗牌