Wie füge ich mit pgadmin3 mehrere Spalten in einer Abfrageanweisung in PostgreSQL hinzu?
postgresql
pgadmin
Hick
quelle
quelle
ALTER TABLE [ ONLY ] name [ * ] action [, ... ]
, postgresql.org/docs/current/static/sql-altertable.htmlALTER TABLE table ADD COLUMN col1 int default 0, ADD COLUMN col2 text default 'foo';
detaillierte Abfrage, bei der column_constraints optional sind
quelle