I have below query
select * from table A where A.ID in (select ID from table B )
If I use lookup transformation in SSIS package with table A as source and do lookup on table B for ID column , will it be equivalent to above query?
I have below query
select * from table A where A.ID in (select ID from table B )
If I use lookup transformation in SSIS package with table A as source and do lookup on table B for ID column , will it be equivalent to above query?