Skip to content

Instantly share code, notes, and snippets.

@HeLiBloks
Created January 15, 2016 13:44
Show Gist options
  • Save HeLiBloks/70ec8e8170560e4c0d07 to your computer and use it in GitHub Desktop.
Save HeLiBloks/70ec8e8170560e4c0d07 to your computer and use it in GitHub Desktop.
USE database;
GO
SELECT t.name AS t_name,
SCHEMA_NAME(schema_id) AS s_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 '%ID'
ORDER BY s_name, t_name;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment