I have a large database and would like to select table names that have a certain column name. I have done something like this in MySQL, but can't find any info on SQL Server.
I want to do something like:
select [table] from [db] where table [has column 'classtypeid']
how can I do something like this?