I have a table with the following structure
Date Holiday Flag
12/23/2016 -1
12/24/2016 -1
12/25/2016 1
12/26/2016 1
12/27/2016 -1
I want to add an additional flag based derived from the two columns mentioned above as such
Date Holiday Flag Previous Flag
12/23/2016 -1 -1
12/24/2016 -1 -1
12/25/2016 1 -1
12/26/2016 1 1
12/27/2016 -1 -1
Basically, in the event that there's a holiday on two consecutive days (12/25/2016 and 12/26/2016), I want 'Previous Flag' to reflect that on the second day (12/26/2016) as 1
I'm using SQL Server 2008 to form the query but cant seem to figure out the logic.
What is the best way to approach this situation? Thank you in advance for your help, I'm new to programming. Any help will be appreciated.
With the help of a CTE and Row_Number()
Returns
Not sure I agree with the desired results. I show 12/27 previous flag as 1