Skip to content
Advertisement

Finding the overall data from specific date using bigquery

I am creating a query using bigquery that will calculate the overall number of data within 5 days from a specific date for each ID. So far I managed to get the result where the result return the data for each day (day 1 until 5), which means there are 5 dates in the result. However, what I want is actually to return only 1 date which is the last date so it will be like that 1 date showing the overall data for the past 5 days from that specific date for each of ID.

Sample data:

enter image description here

Sample code:

Sample output:

So far, the query return the data for each date from day 1 to 5. How to make it so it returns the overall data from date 1 to 5 and also return column date only for the day 5’s date like below (assuming day 1 is 2020-01-01 and day 5 is 2020-01-05).
enter image description here

Advertisement

Answer

I think one approach could be declaring variables, if you’re using script, so that you could extract/tag your output against end_date in your interval. Eg.

And output:

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement