Skip to content

Instantly share code, notes, and snippets.

@tonyjoanes
Created October 28, 2015 10:50
Show Gist options
  • Save tonyjoanes/f158e875941f07268814 to your computer and use it in GitHub Desktop.
Save tonyjoanes/f158e875941f07268814 to your computer and use it in GitHub Desktop.
Find tables with a column of particular name MSSQL
SELECT t.name AS table_name,
SCHEMA_NAME(schema_id) AS schema_name,
c.name AS column_name
FROM sys.tables AS t
INNER JOIN sys.columns c ON t.OBJECT_ID = c.OBJECT_ID
WHERE c.name LIKE '%name of column%'
ORDER BY schema_name, table_name;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment