Skip to content

Commit

Permalink
fix intro
Browse files Browse the repository at this point in the history
  • Loading branch information
alamb committed Feb 10, 2025
1 parent e0b360c commit 71823ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/source/user-guide/sql/window_functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ WINDOW w AS (PARTITION BY depname ORDER BY salary DESC);

The syntax for the OVER-clause is

```
```sql
function([expr])
OVER(
[PARTITION BY expr[, …]]
Expand All @@ -126,7 +126,7 @@ function([expr])

where **frame_clause** is one of:

```
```sql
{ RANGE | ROWS | GROUPS } frame_start
{ RANGE | ROWS | GROUPS } BETWEEN frame_start AND frame_end
```
Expand Down

0 comments on commit 71823ab

Please sign in to comment.