如何在postgresql中删除多个列

时间:2012-11-20 13:42:40

标签: postgresql

我想在PostgreSQL的表中删除200列。我试过了:

ALTER TABLE my_table
DROP COLUMN col1, col2

但我收到这样的错误:

  

错误:“col2”或附近的语法错误

2 个答案:

答案 0 :(得分:244)

检查一下:

ALTER TABLE table DROP COLUMN col1, DROP COLUMN col2;

答案 1 :(得分:1)

这对我有用:

alter table your_table_name drop column your_column_name;