Skip to content

Commit 0e259be

Browse files
Update RANGE-clause-in-window-functions-practical-examples.md
1 parent ea779fa commit 0e259be

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

RANGE-clause-in-window-functions-practical-examples.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
RANGE Clause in Window Functions is now available in Snowflake. Here as some practical examples of using RANGE clause in the Window Functions.
44

5-
# Example 1. Running sum of acquitions in the last 28 days
5+
## Example 1. Running sum of acquitions in the last 28 days
66

7-
## Input Table: Acquisitions by Date
7+
### Input Table: Acquisitions by Date
88

99
| A | 3 | 2019-10-11 |
1010
|---|----|------------|
@@ -26,7 +26,7 @@ RANGE Clause in Window Functions is now available in Snowflake. Here as some pra
2626
| C | 4 | 2019-09-01 |
2727
| C | 1 | 2019-08-28 |
2828

29-
## RANGE based Window query to get running sum of acquitions in the last 28 days
29+
### RANGE based Window query to get running sum of acquitions in the last 28 days
3030

3131
```sql
3232
select
@@ -38,7 +38,7 @@ select
3838
from acquisitions;
3939
```
4040

41-
## Query Output:
41+
### Query Output:
4242

4343
| A | 1 | 2019-09-01 | 1 |
4444
|---|----|------------|----|

0 commit comments

Comments
 (0)