Skip to content

Commit 132b232

Browse files
authored
Minor: Delete old cume_dist and percent_rank docs (#13137)
* Delete cume_dist and percent_rank docs * fix docs
1 parent a0588cc commit 132b232

File tree

1 file changed

+0
-18
lines changed

1 file changed

+0
-18
lines changed

docs/source/user-guide/sql/window_functions.md

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -148,28 +148,10 @@ All [aggregate functions](aggregate_functions.md) can be used as window function
148148

149149
## Analytical functions
150150

151-
- [cume_dist](#cume_dist)
152-
- [percent_rank](#percent_rank)
153151
- [first_value](#first_value)
154152
- [last_value](#last_value)
155153
- [nth_value](#nth_value)
156154

157-
### `cume_dist`
158-
159-
Relative rank of the current row: (number of rows preceding or peer with current row) / (total rows).
160-
161-
```sql
162-
cume_dist()
163-
```
164-
165-
### `percent_rank`
166-
167-
Relative rank of the current row: (rank - 1) / (total rows - 1).
168-
169-
```sql
170-
percent_rank()
171-
```
172-
173155
### `first_value`
174156

175157
Returns value evaluated at the row that is the first row of the window frame.

0 commit comments

Comments
 (0)