如何在 SSIS 数据流中实现这一目标
这是示例数据:
;with cust (CustomerID,Cutomer_Name,score)
as
(Select 1 as CustomerID, 'abd' as Cutomer_Name, 100 as Score
union
select 1,'abd',null
union select 1,'abd',20
)
select * from cust
从这里我需要选择得分最低的记录,然后仅将该行发送到决赛桌。
在SQL中使用Rownum函数很容易实现,但是这种情况发生在SSIS中的数据流过程中