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 a.col1 , a.col2
from tab1 a,
join tab2 b on a.col3=b.col3
where a.col4 = <constant>
select a.col1 , a.col2
from tab1 a
where a.col3 in (select col3 from tab2)
and a.col4 = <constant>