How can I get a list of all the tables that have a specific column name?
select table_name from information_schema.columns where COLUMN_NAME = 'MyColumn'