Answers for "find how many table doesn't contain column in mysql"

SQL
0

find how many table doesn't contain column in mysql

select
t.*
from INFORMATION_SCHEMA.TABLES as t
    left join INFORMATION_SCHEMA.COLUMNS as c
    on c.TABLE_NAME = t.TABLE_NAME
    and c.TABLE_SCHEMA = t.TABLE_SCHEMA
    and c.COLUMN_NAME = 'unique'
where c.COLUMN_NAME is null
and t.TABLE_SCHEMA = 'database'
Posted by: Guest on August-17-2020

Code answers related to "find how many table doesn't contain column in mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language