Skip to content

Commit

Permalink
Merge pull request #3769 from rvjansen/patch-1
Browse files Browse the repository at this point in the history
Update create_sequence.md
  • Loading branch information
szarnyasg authored Oct 2, 2024
2 parents 02f0b7b + 8932093 commit a302ff3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/sql/statements/create_sequence.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Generate odd numbers using `INCREMENT BY`:
CREATE SEQUENCE serial START WITH 1 INCREMENT BY 2;
```

Generate a descending sequqnce starting from 99:
Generate a descending sequence starting from 99:

```sql
CREATE SEQUENCE serial START WITH 99 INCREMENT BY -1 MAXVALUE 99;
Expand Down

0 comments on commit a302ff3

Please sign in to comment.