Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SQL

postgres update multiple columns

UPDATE table_name 
SET column_one = TRUE,
    column_two = 'some string',
    column_three = 558,
WHERE column_four = 'some other string'
Source by www.postgresqltutorial.com #
 
PREVIOUS NEXT
Tagged: #postgres #update #multiple #columns
ADD COMMENT
Topic
Name
3+2 =