I have a large database and you want to select table names with a specific column name. I did something similar in MySQL but cannot find SQL Server information.
I want to do something like:
select [table]
from [db]
where table [has column 'classtypeid']
How can I do something like this?
source
share