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?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|||
|
|
|
This should do it.
|
|||
|
|
|
Try the following, It's standard SQL (and will work for almost every platform)
Just as you suggested, you can't really get anything that's simpler than this. |
|||||||||||
|