PopSQL

How to Drop a Column in SQL Server

Dropping a column in SQL Server involves using the ALTER TABLE .. DROP COLUMN command.

Drop one column:

alter table products
drop column description;

Drop multiple colums at the same time:

alter table products
drop column price, description;
database icon
Finally, a unified workspace for your SQL development
Get more done, together, with PopSQL and SQL Server