我想在Postgresql的表中删除200列。我试过了:
ALTER TABLE my_table DROP COLUMN col1,col2
但我得到这样的错误:
ERROR: Syntax error at or near “col2”
检查:
ALTER TABLE table DROP COLUMN col1,DROP COLUMN col2;