前言:最近遇到一个需求,需要给一个数据库所有的表添加一个字段,但是一些后创建的表已经有了这个字段,所以引发了下文。
*注释 columnName 字段名 dbName 数据库名
#查询指定库拥有某字段的表
AND TABLE_NAME NOT LIKE 'vw%' 注释:排除视图
SELECT DISTINCT TABLE_NAME FROM information_schema.COLUMNS WHERE COLUMN_NAME = 'columnName' AND TABLE_SCHEMA='dbName' AND TABLE_NAME NOT LIKE 'vw%';
#查询指定数据库所有的表名
select table_name from information_schema.tables where table_schema='dbName' and table_type='base table';
#查询指定数据库没有某字段的所有表
select table_name from information_schema.tables where table_schema='dbName' and table_type='base table' AND TABLE_NAME NOT IN( SELECT DISTINCT TABLE_NAME FROM information_schema.COLUMNS WHERE COLUMN_NAME = 'culumnName' AND TABLE_SCHEMA='dbName' AND TABLE_NAME NOT LIKE 'vw%' ) ;
希望能够帮到大家!