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

Come aggiungere una colonna se non esiste su PostgreSQL?

Con Postgres 9.6 questo può essere fatto usando l'opzione if not exists

ALTER TABLE table_name ADD COLUMN IF NOT EXISTS column_name INTEGER;