I have the following query:
select A,B from table1 where A in (select c from table 2)
But, now I need to change this query and use exists
instead of in
, and it should give the same results.
My tables look like the following:
table1 table2
A B c
------ -----
1 x 1
2 y 3
3 z 4
4 w 7
5 a
1 b
How do I use the exists
function?