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.
SELECT DISTINCT COL1
FROM TAB1
WHERE COL2=constant
AND COL1 NOT IN
(SELECT COL1
FROM TAB2)
select distinct COL1
from TAB1 as A
where COL2 = constant
and not exists
( select *
from TAB2
where COL1 = A.COL1 )
select distinct A.COL1
from TAB1 as A
left outer
join TAB2 as B
on A.COL1 = B.COL1
where A.COL2 = constant
and B.COL1 is null