Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SQL

update row postgres

UPDATE table_name
SET column1 = value1,   -- without quotes for numeric values
    column2 = 'value2', -- with single quotes for text values
    ...
WHERE condition;
Source by es.stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #update #row #postgres
ADD COMMENT
Topic
Name
4+3 =