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.
--left join
INSERT INTO t1
SELECT t2.*
FROM t2
left join t1 on t2.p= t1.p
where t1.pis null
--not exists
INSERT INTO t1
SELECT t2.*
FROM t2 where not exists (select * from t1 where t2.p= t1.p)
--not in
INSERT INTO t1
SELECT t2.*
FROM t2 where p not in(select p from t1 where p is not null)