select Col1 from Tbl1 where Col1 = '52' and Col1 in (select Col2 from Tbl2)
select t1.Col1 from Tbl1 t1join Tbl2 t2 on t1.Col1 = t2.Col2where t1.Col1 = '52'
--1select T1.Col1 from T1where exists (select Col1 from T2 where T2.Col1 = T1.Col1)--2select T1.Col1 from T1where T1.Col1 in(select Col1 from T2 where T2.Col1 = T1.Col1)
--1select T1.Col1 from T1where exists (select * from T2 where T2.Col1 = T1.Col1)--2select T1.Col1 from T1where T1.Col1 in(select T2.Col1 from T2)
We walk in the dark places no others will enterWe stand on the bridge and no one may pass
--1select T1.Col1 from T1where exists (select * from T2 where T2.Col1 = T1.Col1)--2select T1.Col1 from T1where T1.Col1 in(select Col1 from T2)
select T1.Col1 from T1where T1.Col1 in(select Col1 from T2 where T2.Col1 = T1.Col1)