Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
UPDATE MyTable
SET Col1 = Val1, Col2 = Val2;
-- or --
UPDATE MyTable
SET (Col1, Col2) = (
Select Fld1, Fld2 From OtherTable
Where {condition};
UPDATE MyTable
SET Col1 = <same value>
,Col2 = <same value>
...;
-- or --
UPDATE MyTable
SET (Col1, Col2,...) = (
Select <same value>, <same value>,... From OtherTable
Where {condition};
UPDATE MyTable
SET Col1 = n_system_track_id
, Col2 = n_system_track_id
WHERE blah blah;