Answers for "postgres alter set null"

SQL
0

postgresql alter column nullable

-- To change a column to nullable
ALTER TABLE mytable ALTER COLUMN mycolumn DROP NOT NULL;
Posted by: Guest on February-26-2021
1

postgres set null

UPDATE table1
SET column_a IS NULL
WHERE column_b = 'XXX';
Posted by: Guest on June-11-2021

Code answers related to "postgres alter set null"

Code answers related to "SQL"

Browse Popular Code Answers by Language