Answers for "postgres add multiple columns"

SQL
1

alter table add multiple columns postgresql

ALTER TABLE customer 
ADD COLUMN fax VARCHAR,
ADD COLUMN email VARCHAR;
Posted by: Guest on May-26-2020
1

postgres update multiple columns

UPDATE table_name 
SET column_one = TRUE,
    column_two = 'some string',
    column_three = 558,
WHERE column_four = 'some other string'
Posted by: Guest on August-17-2021

Code answers related to "postgres add multiple columns"

Code answers related to "SQL"

Browse Popular Code Answers by Language