How do I check if a column exists in SQL Server 2000?
|
|
|
||
|
|
|
In query analyzer, select the Database that contains the table in which you need to check if the field exists or not and run the query below. SELECT
count(*) AS [Column Exists]
FROM SYSOBJECTS |
||
|
|
