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 t ;
SET ;
t.field1 = s.field1, ;
t.field2 = s.field2, ;
t.field3 = s.field3 ;
FROM ;
target t ;
inner join source s ;
on t.pk = s.pk ;
WHERE ;
t.field1 # s.field1 ;
OR t.field2 # s.field2 ;
OR t.field3 # s.field3
INSERT INTO ;
target ;
(;
field1,;
field2,;
field3) ;
SELECT ;
field1,;
field2,;
field3 ;
FROM ;
source s ;
WHERE ;
s.pk NOT IN ;
(SELECT pk FROM target)