How to Generate Row number Partition by two column match in sql

Multi tool use
Multi tool use


How to Generate Row number Partition by two column match in sql



Tbl1


---------------------------------------------------------
Id Date Qty ReOrder
---------------------------------------------------------
1 1-1-18 1 3
2 2-1-18 0 3
3 3-1-18 2 3
4 4-1-18 3< >3
5 5-1-18 2 3
6 6-1-18 0 3
7 7-1-18 1 3
8 8-1-18 0 3
---------------------------------------------------------



I want the result like below


---------------------------------------------------------
Id Date Qty ReOrder
---------------------------------------------------------
1 1-1-18 1 3
5 5-1-18 2 3
---------------------------------------------------------



if ReOrder not same with Qty then date will be same upto after reorder=Qty





Please show the code that you have tried before posting here. Also, please expand your question with a better description of the problem that you are facing.
– Dvorog
Jul 2 at 13:37





can you please elaborate more for result you want
– Diptee H
Jul 2 at 13:47




1 Answer
1



You can use cumulative approach with row_number() function :


row_number()


select top (1) with ties *
from (select *, max(case when qty = reorder then 'v' end) over (order by id desc) grp
from table
) t
order by row_number() over(partition by grp order by id);



Unfortunately this will require SQL Server, But you can also do:


select *
from (select *, row_number() over(partition by grp order by id) seq
from (select *, max(case when qty = reorder then 'v' end) over (order by id desc) grp
from table
) t
) t
where seq = 1;






By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.

mvhaxZlwb8Xu 5gVI9fswFYgQhvE0lsXisItIOFC dFI
AODn 0FOZYSlL9,M 6hw6i qAEFCQjyN8 60IN1qNhXFw aiAb QY bsuWuUGSOoQ7wATUf4dz3315,Gl8HqBOFbOiUiNCgwH1jv Pb2jN

Popular posts from this blog

PHP contact form sending but not receiving emails

Do graphics cards have individual ID by which single devices can be distinguished?

Create weekly swift ios local notifications