Tagged Questions

7
votes
5answers
10k views

How do I check if a column exists in SQL Server?

How do I check if a column exists in SQL Server 2000?
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 ...