Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to add a specific column if it does not exist. I have something like this, but it always returns false.:

IF EXISTS( SELECT * FROM INFORMATION_SCHEMA.COLUMNS 
            WHERE TABLE_NAME = 'myTableName' 
           AND  COLUMN_NAME = 'myColumnName')

How can I check if a column exists on a table in SQL Server?

share|improve this question
I accepted the first answer that worked for me, although more might be correct, thanks a lot. – Maciej Sep 25 '08 at 12:48
12  
Up-vote because this is a nice reference item for the kind of things you do more than once but don't remember the syntax for. S/O beats BOL any day. – Rex Miller Jan 27 '10 at 21:54
2  
I look for this every single time I create a new column in a table. Awesome reference. – Justin Sep 8 '11 at 20:04
your SQLis for postgresql not sql-server. stackoverflow.com/a/9991093/614825 – Eat at Joes Feb 28 at 15:50

13 Answers

up vote 417 down vote accepted

SQL Server 2005 onwards:

if exists(select * from sys.columns 
            where Name = N'columnName' and Object_ID = Object_ID(N'tableName'))    
begin
    -- Column Exists
end
share|improve this answer
54  
Or you could save some typing and use IF COL_LENGTH('tableName', 'columnName') IS NOT NULL – Martin Smith Mar 20 '11 at 14:54
1  
@Mitch - According to the docs it will return NULL if the user doesn't have permissions to view the metadata but sys.columns checks user access too. – Martin Smith Mar 21 '11 at 0:26
3  
COL_LENGTH worked great for me ... brilliant! – Jess Apr 22 '11 at 15:10
13  
+1 Oh how I love stackoverflow. Just searched for this, 1st google hit = this page, perfect. Thanks! – Paul Groke May 23 '11 at 19:26
2  
@vijaysylvester: complete rubbish. The SELECT is not actually evaluated with EXISTS. You can use EXISTS (SELECT 1/0 FROM...) if you want. See stackoverflow.com/a/3994059/27535 and technet.microsoft.com/en-us/library/ms189259.aspx?ppud=4 – gbn May 9 at 9:23
show 4 more comments

A more concise version

 IF COL_LENGTH('table_name','column_name') IS NULL
 BEGIN
 /*Column does not exist or caller does not have permission to view the object*/
 END

The point about permissions on viewing metadata applies to all answers not just this one.

share|improve this answer
8  
+1 This is a nice solution. Surprised it's not more highly rated. – Jonathan Moffatt Sep 12 '11 at 7:17
5  
+1 Most people only read and trust the tick. This should be the accepted answer. – The Mouth of a Cow Sep 22 '11 at 15:34
2  
+1 really like this better. – eduncan911 Nov 2 '11 at 1:55
5  
@Bill - Less readable in what way? Looks fine in Firefox. This answer was posted more than 2 years later than the accepted one, which explains the rating IMO. If you meant less clear that it is an existence check this type of idiom is quite common in SQL Server. e.g. using IF OBJECT_ID('TableName','U') IS NULL to check object existence or DB_ID('foo') to check database existence. – Martin Smith Nov 30 '11 at 22:31
3  
@BillYang, less highly rated, in part at least, becuase it was posted three years after the accepted answer. – Jodrell Oct 2 '12 at 13:14
show 2 more comments

Tweak the below to suit your specific requirements:

if not exists (select column_name from INFORMATION_SCHEMA.columns where table_name = 'MyTable' and column_name = 'MyColumn')
  alter table MyTable add MyColumn int

Edit to deal with edit to question: That should work - take a careful look over your code for stupid mistakes; are you querying INFORMATION_SCHEMA on the same database as your insert is being applied to for example? Do you have a typo in your table/column name in either statement?

share|improve this answer
I just found out that adding TABLE_SCHEMA = 'mySchema' after where clause fixes the problem. – Maciej Sep 25 '08 at 17:01
3  
-1: does not answer OP's question, only adds the new information on how to add a new collumn despite OP not asking about that at all, does not address OP's comment. – ANeves Nov 2 '11 at 11:46

You can use the information schema system views to find out pretty much anything about the tables you're interested in:

SELECT *
  FROM INFORMATION_SCHEMA.COLUMNS
 WHERE TABLE_NAME = 'yourTableName'
 ORDER BY ORDINAL_POSITION

You can also interrogate views, stored procedures and pretty much anything about the database using the Information_schema views.

share|improve this answer
This method worked for me with a MySQL database. – Marcin Jul 18 '11 at 13:03

I'd prefer INFORMATION_SCHEMA.COLUMNS over a system table because Microsoft does not guarantee to preserve the system tables between versions. For example, dbo.syscolumns does still work in SQL 2008, but it's deprecated and could be removed at any time in future.

share|improve this answer
Well yes, that goes without saying since INFORMATION_SCHEMA views contain only ANSI-standard metadata. However, that is sufficient for an existence test. – Christian Hayter Feb 26 at 17:15

Try this...

IF NOT EXISTS(
  SELECT TOP 1 1
  FROM INFORMATION_SCHEMA.COLUMNS
  WHERE 
    [TABLE_NAME] = 'Employees'
    AND [COLUMN_NAME] = 'EmployeeID')
BEGIN
  ALTER TABLE [Employees]
    ADD [EmployeeID] INT NULL
END
share|improve this answer

Try something like:

CREATE FUNCTION ColumnExists(@TableName varchar(100), @ColumnName varchar(100))
RETURNS varchar(1) AS
BEGIN
DECLARE @Result varchar(1);
IF EXISTS (SELECT * FROM INFORMATION_SCHEMA.Columns WHERE TABLE_NAME = @TableName AND COLUMN_NAME = @ColumnName)
BEGIN
    SET @Result = 'T'
END
ELSE
BEGIN
    SET @Result = 'F'
END
RETURN @Result;
END
GO

GRANT EXECUTE ON  [ColumnExists] TO [whoever]
GO

Then use it like this:

IF ColumnExists('xxx', 'yyyy') = 'F'
BEGIN
  ALTER TABLE xxx
  ADD yyyyy varChar(10) NOT NULL
END
GO

Ity should work on both SS2000 & SS2005. Not sure about 2008, but don't see why not.

share|improve this answer
Nice idea, will save time, script length and be easier to remember! :) – caveman_dick Jun 2 '10 at 17:33

First check if the table/column id/name combination exists in dbo.syscolumns (an internal SQL server table that contains field definitions), and if not issue the appropriate ALTER TABLE query to add it. For example:

IF NOT EXISTS ( SELECT  *
            FROM    syscolumns
            WHERE   id = OBJECT_ID('Client')
                    AND name = 'Name' ) 
ALTER TABLE Client
ADD Name VARCHAR(64) NULL
share|improve this answer

This worked for me in SQL 2000:

IF EXISTS (select * from INFORMATION_SCHEMA.COLUMNS where table_name = 'table_name' and column_name = 'column_name')
begin
...
end
share|improve this answer
declare @myColumn   as nvarchar(128)
set @myColumn = 'myColumn'
if not exists (
    select  1
    from    information_schema.columns columns 
    where   columns.table_catalog   = 'myDatabase'
        and columns.table_schema    = 'mySchema' 
        and columns.table_name      = 'myTable' 
        and columns.column_name     = @myColumn
    )
begin
    exec('alter table myDatabase.mySchema.myTable add'
    +'    ['+@myColumn+'] bigint       null')
end
share|improve this answer

Try this

SELECT COLUMNS.*
FROM INFORMATION_SCHEMA.COLUMNS COLUMNS, INFORMATION_SCHEMA.TABLES TABLES
WHERE COLUMNS.TABLE_NAME=TABLES.TABLE_NAME AND UPPER(COLUMNS.COLUMN_NAME)=UPPER('column_name')
share|improve this answer

I needed similar for SQL SERVER 2000 and, as @Mitch points out, this only works inm 2005+.

Should it help anyone else, this is what worked for me in the end:

if exists (select * from sysobjects, syscolumns where sysobjects.id = syscolumns.id and sysobjects.name = 'table' and syscolumns.name = 'column')
share|improve this answer

A good friend and colleague of mine showed me how you can also use an IF block with SQL functions OBJECT_ID and COLUMNPROPERTY in SQL SERVER 2005+ to check for a column. You can use something similar to the following:

You can see for yourself here

IF (OBJECT_ID(N'[dbo].[myTable]') IS NOT NULL AND
    COLUMNPROPERTY( OBJECT_ID(N'[dbo].[myTable]'), 'ThisColumnDoesNotExist', 'ColumnId') IS NULL)
BEGIN
    SELECT 'Column does not exist -- You can add TSQL to add the column here'
END
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.