我想在Postgresql的表中删除200列。我试过了:
ALTER TABLE my_table DROP COLUMN col1,col2
但我得到这样的错误:
ERROR: Syntax error at or near “col2”
检查:
原文链接:https://www.f2er.com/postgresql/193844.htmlALTER TABLE table DROP COLUMN col1,DROP COLUMN col2;