Home Forums Programming SSDT load TableC from TableB based on value of TableA in SSDT/SSIS RE: load TableC from TableB based on value of TableA in SSDT/SSIS
Phil Parkin
SSC Guru
Points: 247210
More actions
September 23, 2014 at 10:24 pm
#1747712
Use the following query for your dataflow source:
select b.GROUP_ID, b.NAME, b.STATE
from TableB b
join TableA a on b.GROUP_ID = a.GROUP_ID
where a.STATUS = 'Ready'