Last active
December 5, 2017 18:47
-
-
Save arturfsousa/e8bfcbe19a8efa6846b39a357d78001c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT Col.Column_Name from | |
INFORMATION_SCHEMA.TABLE_CONSTRAINTS Tab, | |
INFORMATION_SCHEMA.CONSTRAINT_COLUMN_USAGE Col | |
WHERE | |
Col.Constraint_Name = Tab.Constraint_Name | |
AND Col.Table_Name = Tab.Table_Name | |
AND Constraint_Type = 'PRIMARY KEY' | |
AND Col.Table_Name = '<your table name>'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment