Skip to content

Instantly share code, notes, and snippets.

@ChauThan
Created November 15, 2013 02:22
Show Gist options
  • Save ChauThan/7478110 to your computer and use it in GitHub Desktop.
Save ChauThan/7478110 to your computer and use it in GitHub Desktop.
How many tables in database AdventureWorks have column name like ‘EmployeeID’?
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 '%EmployeeID%'
ORDER BY schema_name
,table_name;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment