- Explore
- Collaborate
- Visualize
- Connect
- Pricing
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;
From SQL Server query to chart to Slack in seconds
Get to answers faster, together, with PopSQL and SQL Server
Previous
How to Add a Column
From SQL Server query to chart to Slack in seconds
Get to answers faster, together, with PopSQL and SQL Server