-1

我被要求执行一项任务,即从一个表中导入数据并使用另一个表循环遍历该数据并使用 SSIS 脚本任务或脚本组件获取匹配结果。

我的剧本写作很差,有人可以帮我吗?

表格1

username    cust_id
a               2
b               4
c               5

表 2

cust_id        city 
2              london   
4              bngl 

使用表 2 数据循环遍历表 1 数据并获取 O/p,如下所示

username    cust_id
a               2
b               4
4

1 回答 1

0

你应该使用 JOIN

选择用户名,cust_id FROM Table1 JOIN Table2 ON Table1.cust_id = Table2.cust_id

于 2015-12-13T12:03:58.330 回答