postgres create new column from 2 columns code example
Example 1: alter table add multiple columns postgresql
ALTER TABLE customer
ADD COLUMN fax VARCHAR,
ADD COLUMN email VARCHAR;
Example 2: alter table add column postgres
Alter Postgres Table