tursodatabase / libsql

libSQL is a fork of SQLite that is both Open Source, and Open Contributions.
https://turso.tech/libsql
MIT License
9.54k stars 252 forks source link

[Feature] Allow sequence creation #1504

Open GustavoOS opened 3 months ago

GustavoOS commented 3 months ago

Description

Suggestion is to allow sequence creation as specified by SQL

Example of Definition

CREATE SEQUENCE sequence_1
start with 1
increment by 1
minvalue 0
maxvalue 100
cycle;

Example of Usage

select sequence_1.next_val

Motivation