I would like to write a single SQL command to drop multiple columns from a single table in one ALTER TABLE statement.
ALTER TABLE
From MSDN\'s ALTER TABLE documenta
alter table tablename drop (column1, column2, column3......);