Skip to content
Advertisement

Find the max date to last one year transaction for each group

I have to query in sql server where I have to find for each id it’s volume such that we have last 1 year date for each id with it’s volume.

for example below is my data ,

for each id I need to query the last 1 year transaction from when we have the entry for that id as you can see from the snippet for id 1 we have the latest date as 7/31/2020 so I need the last 1 year entry from that date for that id, The highlighted one is exclude because that date is more than 1 year from the latest date for that id

Similarly for Id 3 we have all the date range in one year from the latest date for that particular id

enter image description here

I tried using the below query and I can get the latest date for each id but I am not sure how to extract all the dates for each id from the latest date to one year, I would appreciate if some one could help me.

I am using Microsoft sql server would need the query which executes in sql server, Table name is emp and have millions of id

Advertisement

Answer

To exclude transactions where the date difference between the tran_date and the maximum tran_date for each id is greater than 1 year, something like this:

Update: per comments, added volume. Thnx GMB 🙂

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement