mysql:获取数据库中所有具有名为xyz的列的表
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'