Reputation: 391
How can I delete two column (attribute) at a time from one table in mysql?
Upvotes: 0
Views: 1076
Reputation: 6571
ALTER TABLE `table_name` DROP COLUMN `column1`, DROP COLUMN `column2`
Upvotes: 2