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 may be late, but sharing it for the new users visiting this question. To drop multiple columns actual syntax is
alter table tablename drop column col1, drop column col2 , drop column col3 ....
So for every column you need to specify "drop column" in Mysql 5.0.45.