“SQL Verifique se a coluna existe” Respostas de código

Como verificar se a coluna existe na tabela SQL

IF EXISTS(SELECT 1 FROM sys.columns WHERE Name = N'columnName' AND Object_ID = Object_ID(N'schemaName.tableName'))
BEGIN
	ALTER TABLE MyTable ADD COLUMN MyOtherColumn(DATATYPE)
END
Fortune Mbulazi

SQL Verifique se a coluna existe

* Using the below query, You can check whether the table1 has a column named "id"

SHOW COLUMNS FROM table1 LIKE 'id'
Arslan

Como verificar se existe uma coluna em uma tabela de servidor SQL?


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.

Note that the first parameter table name to COL_LENGTH can be in one, two, or three part name format as required.

An example referencing a table in a different database is

COL_LENGTH('AdventureWorks2012.HumanResources.Department','ModifiedDate')
One difference with this answer compared to using the metadata views is that metadata functions such as COL_LENGTH always only return data about committed changes irrespective of the isolation level in effect.
shafeeque

Respostas semelhantes a “SQL Verifique se a coluna existe”

Perguntas semelhantes a “SQL Verifique se a coluna existe”

Mais respostas relacionadas para “SQL Verifique se a coluna existe” em Sql

Procure respostas de código populares por idioma

Procurar outros idiomas de código