Ich möchte in PostgreSQL 200 Spalten in meine Tabelle einfügen. Ich habe es versucht:
ALTER TABLE my_table
DROP COLUMN col1, col2
Aber ich bekomme so einen Fehler:
FEHLER: Syntaxfehler bei oder in der Nähe von "col2"
postgresql
f.ashouri
quelle
quelle
Antworten:
Überprüfen Sie dies:
quelle
ERROR: 42601: syntax error at or near ","
ALTER TABLE table DROP col1, DROP col2;
Das hat bei mir funktioniert:
quelle