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"
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"
Antworten:
Überprüfen Sie dies:
ALTER TABLE table DROP COLUMN col1, DROP COLUMN col2;
ERROR: 42601: syntax error at or near ","
ALTER TABLE table DROP col1, DROP col2;
Das hat bei mir funktioniert:
alter table your_table_name drop column your_column_name;