Subquery to Join
I have simple subquery based sql statement and hope someone could help converting it into a Join equivalent format.
select column1,column2 from Table1 where column1 in (select ColumnA from Table2 where ColumnB=1)
Thank you.
Martin
1