Created
March 26, 2020 12:07
-
-
Save djouallah/dcbb10236742a17e2d944bb989685850 to your computer and use it in GitHub Desktop.
This file contains 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
with tablename as(SELECT country_region,date,sum(deaths) as deaths,sum(confirmed) as confirmed FROM `bigquery-public-data.covid19_jhu_csse.summary` | |
group by 1,2 ) | |
select t.*, deaths - coalesce(lag(deaths) over(partition by country_region order by date),0) as daily_deaths, | |
confirmed - coalesce(lag(confirmed) over(partition by country_region order by date),0) as daily_confirmed | |
from tablename t |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment