How do I check if a column exists in SQL Server 2000?
feedback
|
| |||||
feedback
|
Present will be 0, is there is no column_name present in table_name , otherwise 1 @CMS: I don't think that 'INFORMATION_SCHEMA.COLUMNS' have information about every table in DB. Because this didn't worked for me. But my answer did worked. | |||
|
feedback
|
|
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.
| ||||
|
feedback
|
|
This should do nicely:
| ||||
|
feedback
|
|
I don't know if this script will work in sqlserver 2000, but in 2008 works:
| ||||
|
feedback
|