Try the following: this is standard SQL (and will work on almost every platform)
SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES EXCEPT SELECT TABLE_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE COLUMN_NAME = 'EndDate'
As you expected, you cannot get anything simpler than this.
Michael j swart
source share