mysql:获取数据库中所有具有名为xyz的列的表

fly*_*ire 2 mysql

mysql:获取数据库中所有具有名为xyz的列的表

Tow*_*own 7

SQL Server和MySql都有Information_Schema.Columns表:http: //dev.mysql.com/doc/refman/5.1/en/columns-table.html

select c.table_name from 
information_schema.columns c 
where c.column_name = 'xyz'
Run Code Online (Sandbox Code Playgroud)