Created
February 22, 2015 15:37
-
-
Save jdwyah/10ab9c98cfd58072cda3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
lag_lead as ( | |
select who_identifier, time_period, | |
lag(time_period,1) over (partition by who_identifier order by who_identifier, time_period), | |
lead(time_period,1) over (partition by who_identifier order by who_identifier, time_period) | |
from monthly_usage), |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment