To calculate the cumulative sum or running table, first, we will create a table that contains a count column and a day column. Next, we will create the Common Table Expressions and use the “Windows” function for calculating the Running total or Cumulative sum. This blog will discuss creating CTE(Common Table Expressions) and using the “Windows” function.
First, we create the table with the day column and the count column:
select
to_date(start_date) as day,
count(2)
from sessions1
group by to_date(start_date);
Day | Count |
2022-06-03 | 2 |
2022-06-04 | 4 |
2022-06-05 | 6 |
After that, we will write the Snowflake CTE(Common Table Expressions) and utilize the window function for keeping the track of the running total or cumulative sum.
select
to_date(start_date) as day,
count(2)
from sessions2
group by to_date(start_date);
with data as (
select
to_date(start_date) as day,
count(2) as number_of_sessions
from sessions2
group by to_date(start_date)
)
select
day,
sum(number_of_sessions) over (order by day asc rows between unbounded preceding and current row)
from data;
By the end of this blog, you can create the Common Table Expressions and use the Windows function for calculating the Running total or Cumulative sum. I hope this information is sufficient.
Snowflake Related Articles
If you have any queries, let us know by commenting below.
Stay updated with our newsletter, packed with Tutorials, Interview Questions, How-to's, Tips & Tricks, Latest Trends & Updates, and more ➤ Straight to your inbox!
Name | Dates | |
---|---|---|
Snowflake Training | Aug 05 to Aug 20 | |
Snowflake Training | Aug 08 to Aug 23 | |
Snowflake Training | Aug 12 to Aug 27 | |
Snowflake Training | Aug 15 to Aug 30 |
1 /10
Copyright © 2013 - 2023 MindMajix Technologies