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
Generic:
ALTER TABLE table_name DROP COLUMN column1,column2,column3;
E.g:
ALTER TABLE Student DROP COLUMN Name, Number, City;