user505880
user505880

Reputation: 391

How can I delete two column (attribute) at a time from one table in mysql?

How can I delete two column (attribute) at a time from one table in mysql?

Upvotes: 0

Views: 1076

Answers (1)

shankhan
shankhan

Reputation: 6571

ALTER TABLE `table_name` DROP COLUMN `column1`, DROP COLUMN `column2`

Upvotes: 2

Related Questions