update postgresql 10 to 12 code example
Example 1: update value postgresql
UPDATE table
SET column1 = value1,
column2 = value2 ,...
WHERE
condition;
Example 2: update record in postgreps
UPDATE table_name
SET column1 = value1,
column2 = value2,
...
WHERE condition;
Example 3: update postgres sequence to max
SELECT setval('table_id_seq', (SELECT MAX(id) FROM table)+1);