Is there a way to have SQLite force rowids to be sequential and start from 0? E.g. if I have this table:
CREATE TABLE memory_by_cpu (
cpu INTEGER PRIMARY KEY,
memory INTEGER NOT NULL
)
I want to ensure that the cpu
column (which will be equal to the rowid) is sequential and starting at 0.
This is unrelated to AUTOINCREMENT
.