PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Posso aggiungere un vincolo UNIQUE a una tabella PostgreSQL, dopo che è già stata creata?

psql Guida in linea di :

\h ALTER TABLE

Documentato anche nei documenti di postgres (un'ottima risorsa, oltre che facile da leggere).

ALTER TABLE tablename ADD CONSTRAINT constraintname UNIQUE (columns);