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, b, c, d, e, f
from table
where f = 1006 or f = 196
select a, b, c, d, e, f
from leTable t
inner join
(
select a from
(
select a from leTable where f = 1006
) x
inner join
(
select a from leTable where f = 196
) z
on x.a = z.a
) s
on t.a = s.a