Tagged Questions
2
votes
6answers
1k views
How do I know if CONSTRAINT_NAME is a Primary or Foreign Key?
Using this SQL on SQL Server 2005
SELECT CONSTRAINT_NAME
FROM INFORMATION_SCHEMA.KEY_COLUMN_USAGE
WHERE TABLE_NAME = @TableName
AND COLUMN_NAME=@ColumnName
I get the Primary Keys AND the Foreign ...