MySQL 中查找含有目标字段的表的方法
程序员文章站
2024-03-31 14:21:16
复制代码 代码如下:
select table_schema,table_name
from information_schema.`columns`
where c...
复制代码 代码如下:
select table_schema,table_name
from information_schema.`columns`
where column_name='字段名字'
参考:mysql中,一个字段在多张表都存在,怎么用sql语句一次性查询这些表呢