mysql 查询 有某个字段的表

select table_name from information_schema.columns where column_name='TENANT_ID' and TABLE_SCHEMA='construction_progress';


SELECT table_name from information_schema.`TABLES` where TABLE_SCHEMA='construction_progress'
and TABLE_NAME not in (
select table_name from information_schema.columns where column_name='TENANT_ID' and TABLE_SCHEMA='construction_progress'
)
;

上一篇:vue写代码的时候怎么把共享数据state保存到浏览器,防止每次关闭,数据重置


下一篇:(转)手动搭建自己的nuget服务器及使用