Created
February 22, 2015 15:38
-
-
Save jdwyah/25a4f297930f845667e7 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_with_diffs as ( | |
select who_identifier, time_period, uses_outlook, lag, lead, | |
time_period-lag lag_size, | |
lead-time_period lead_size | |
from lag_lead), |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment