MySql获取某个字段存在于哪个表的sql语句
程序员文章站
2024-02-26 10:27:52
复制代码 代码如下: select table_schema,table_name from information_schema.`columns` where colu...
复制代码 代码如下:
select table_schema,table_name from information_schema.`columns` where column_name = 'col1'
col1为子段名。
推荐阅读