IMG-LOGO

How to delete a column of a table in TSQL?

andy - 23 Dec, 2020 1014 Views 0 Comment

Learn how you can delete a column of a table in TSQL. Before deleting a column, it is always recommended to check if a column does exist in a table. This is to ensure the process of deleting is working fine.

We are going to use the EXISTS method to check if a column exists against the column schema in the INFORMATION_SCHEMA system table.

Let's consider we have the following table definition. We want to delete a PromotionDate column.

p>

Here is the full TSQL code to delete the column of the Products table.


IF EXISTS(
		SELECT *
		FROM   INFORMATION_SCHEMA.COLUMNS
		WHERE  TABLE_NAME = 'Products'
		AND COLUMN_NAME = 'PromotionDate'
	) 
	BEGIN
		ALTER TABLE Products
		DROP COLUMN PromotionDate;
	END

Comments

There are no comments available.

Write Comment
0 characters entered. Maximum characters allowed are 1000 characters.

Related Articles

How to restore database using SQL query in TSQL?

If you have a database backup bak file extension and want to restore it using SQL query You can use the built in RESTORE DATABASE function Remember in order to be able to restore a database successfully You need to ...

How to get all table sizes in TSQL?

To get the information about how much space or size used by tables You can retrieve the size information by linking multiple tables in sys tables There are two tables that hold this information The first one is the sys ...