Skip to content

Commit

Permalink
Merge pull request #4417 from mzygQAQ/patch-1
Browse files Browse the repository at this point in the history
Add syntax descriptions of percentage limit
  • Loading branch information
szarnyasg authored Dec 19, 2024
2 parents 7b9261f + 47ccfbc commit 9c7a0d2
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions docs/sql/query_syntax/limit.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,13 @@ GROUP BY city
ORDER BY population DESC
LIMIT 5;
```
Select 10% of the rows from the addresses table:

```sql
SELECT *
FROM addresses
LIMIT 10%;
```

## Syntax

Expand Down

0 comments on commit 9c7a0d2

Please sign in to comment.