Delete Columns from a Table
This topic describes how to delete table columns in SQL Server 2012 by using SQL Server Management Studio or Transact-SQL.
Warning
When you delete a column from a table, it and all the data it contains are deleted from the database. This action cannot be undone.
In This Topic
Before you begin:
Limitations and Restrictions
Security
To delete a column from a table, using:
SQL Server Management Studio
Transact-SQL
Before You Begin
Limitations and Restrictions
You cannot delete a column that has a CHECK constraint. You must first delete the constraint.
You cannot delete a column that has PRIMARY KEY or FOREIGN KEY constraints or other dependencies except when using the Table Designer. When using Object Explorer or Transact-SQL, you must first remove all dependencies on the column.
Security
Permissions
Requires ALTER permission on the table.
[Top]
Using SQL Server Management Studio
To delete columns by using Object Explorer
In Object Explorer, connect to an instance of Database Engine.
In Object Explorer, right-click the table from which you want to delete columns and choose Delete.
In Delete Object dialog box, click OK.
If the column contains constraints or other dependencies, an error message will display in the Delete Object dialog box. Resolve the error by deleting the referenced constraints.
To delete columns by using Table Designer
In Object Explorer, right-click the table from which you want to delete columns and choose Design.
Right-click the column you want to delete and choose Delete Column from the shortcut menu.
If the column participates in a relationship (FOREIGN KEY or PRIMARY KEY), a message prompts you to confirm the deletion of the selected columns and their relationships. Choose Yes.
[Top]
Using Transact-SQL
To delete columns
In Object Explorer, connect to an instance of Database Engine.
On the Standard bar, click New Query.
Copy and paste the following example into the query window and click Execute.
USE AdventureWorks2012; GO ALTER TABLE dbo.doc_exb DROP COLUMN column_b ;
If the column contains constraints or other dependencies, an error message will be returned. Resolve the error by deleting the referenced constraints.
For additional examples, see ALTER TABLE (Transact-SQL).
[Top]