Hacker News new | ask | show | jobs
by ssdspoimdsjvv 684 days ago
Does SQLite have sequences yet?
1 comments

Sqlite only has automatically assigned row ID. You can type a column as "integer primary key" to make it an alias for the row ID, or use ROWID directly (not recommended for compatibility).