Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So, I've seen lots of questions about finding all tables with a specific column name. However, I'm trying to find all tables WITHOUT a specific column. (In this case, EndDate). Is there a more elegant solution than just finding all the tables with that column, and comparing it to the list of all tables?

share|improve this question

3 Answers

up vote 7 down vote accepted
SELECT
    table_name
FROM
    INFORMATION_SCHEMA.TABLES T
WHERE
    T.TABLE_CATALOG = 'MyDB' AND
    NOT EXISTS (
        SELECT *
        FROM INFORMATION_SCHEMA.COLUMNS C
        WHERE
            C.TABLE_CATALOG = T.TABLE_CATALOG AND
            C.TABLE_SCHEMA = T.TABLE_SCHEMA AND
            C.TABLE_NAME = T.TABLE_NAME AND
            C.COLUMN_NAME = 'EndDate')
share|improve this answer
Perfect, thank you. – Colin DeClue Aug 30 '11 at 15:22

This should do it.

SELECT * FROM INFORMATION_SCHEMA.TABLES t
WHERE NOT EXISTS(SELECT 1 FROM INFORMATION_SCHEMA.COLUMNS c 
   WHERE c.TABLE_NAME = t.TABLE_NAME AND c.TABLE_SCHEMA=t.TABLE_SCHEMA 
  AND c.COLUMN_NAME='EndDate')
share|improve this answer

Try the following, It's standard SQL (and will work for almost every platform)

SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES
EXCEPT
SELECT TABLE_NAME FROM INFORMATION_SCHEMA.COLUMNS
WHERE COLUMN_NAME = 'EndDate'

Just as you suggested, you can't really get anything that's simpler than this.

share|improve this answer
You need to account for catalog and schema as well – Tom H. Aug 30 '11 at 15:14
True Tom (+1 to your solution) – Michael J Swart Aug 30 '11 at 15:16
@Tom H - I dont think you need to account for Catalog, as this query can only be run against one... perhaps im wrong. – Jamiec Aug 30 '11 at 15:17
At worst, the Catalog checking does no harm. But the schema name needs to be checked for sure. – Michael J Swart Aug 30 '11 at 15:20
Yes, in SQL Server the catalog is irrelevant since INFORMATION_SCHEMA only applies to the current database (which, for SQL Server, is a catalog). I don't know about other RDBMSs though and as Michael says, you definitely need to account for schema. – Tom H. Aug 30 '11 at 15:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.