1.查询包含某个字段名的表
select table_name from information_schema.columns where column_name = '列名';
2.创建一个与现有某个表结构完全一样的表,不导入现有表的数据记录
create table 新表名 as select * from 现有表名 where 1=0
1.查询包含某个字段名的表
select table_name from information_schema.columns where column_name = '列名';
2.创建一个与现有某个表结构完全一样的表,不导入现有表的数据记录
create table 新表名 as select * from 现有表名 where 1=0