Answers for "postgres update null"

SQL
1

postgres set null

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

postegresql update to null

UPDATE table1 
SET column_a = NULL
WHERE column_b = 'XXX';
Posted by: Guest on March-02-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language