As you can see, PO number(PONo) ‘0050426995’ is duplicating. Because this table containing PO amendments too. If you notice, DownloadData is in order, meaning first version of PO received on 2010-06-26 17:07:04.910, rest of them subsequently.
The requirement is we want to get following output.
Normally we can write a sub query for this and get the output.
SELECT PONo,
(
SELECT COUNT(PONo)+1 -- to omit zero
FROM ORDERS_Header WHERE PONo=oh.PONo AND DownloadDate< oh.DownloadDate
) AS Revision,
DownloadDate
FROM ORDERS_Header oh
ORDER BY PONO,DownloadDate
By running this query, you can see the following Actual Execution Plan.
From MS-SQL 2005 onwards this can be easily achieved by RANK() function.
SElECT PONo,
RANK() OVER(PARTITION BY PONo ORDER BY DownloadDate) AS Revision ,DownloadDate
FROM dbo.ORDERS_Header
ORDER BY PONO,DownloadDate
Check its Actual Execution Plan and note the difference.
No comments:
Post a Comment