Joining 2 tables using the ssis lookup would result only the first matching output,rather than all the matching output in SQL.Is there any way to code SSIS ,to result out all the matching out put.
Table 1
Country,Prate,year
uk,1%,2014
France,1%,2014
Table 2
Country,SSrate,year
uk,11%,2014
uk,22%,2013
France,15%,2014
The ssis result, with the joining column as country would be
Country,Prate,year,ssrate
uk,1%,2014,11%
France,1%,2014,15%
How to get a result as shown below
Country,Prate,year,ssrate
uk,1%,2014,11%
uk,1%,2013,22%
France,1%,2014,15%