Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
spencerscott917 committed Nov 24, 2024
1 parent 9e46702 commit e075f2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/user-guide/sql/window_functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ Returns the percentage rank of the current row within its partition. The value r
percent_rank()
```

Example:
Example:

```sql
SELECT x, y, percent_rank() OVER (ORDER BY y) AS percent_rank FROM VALUES (1,0), (2,75), (3,100), (4,25), (5,50) t(x,y);
Expand Down

0 comments on commit e075f2e

Please sign in to comment.