so i have been experimenting with OVER and PARTITION BY but have not been successful.
here is what i have: 2 columns; 1 is serial number and will have multiple entries with the same serial number. the 2nd is date.
what i am trying to do is count the days between 2 dates based off of serial number. i can do the datediff easily i cannot figure out how to only calculate the difference between dates for the specific serial numbers.
example: serial number 1234 has date of 1/1/2016, the record below has serial number 1234 and date of 12/30/2015 so the difference is 2 days, the record below THAT has serial number 1234 and a date of 12/27/2015 so the difference is 3 days, but the record below THAT has serial number 4321 and a date of 12/25/2015: the subtraction needs to stop there since that serial number is different and start over looking for the same 4321 serial number.
any help is greatly appreciated.