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
this query will alter the multiple column test it.
create table test(a int,B int,C int); alter table test drop(a,B);