I need to create a table in SQLite (for android) where the AutoIncrement value starts from a specific value and not form 1, for example 100.
Here is an example of the create statement: CREATE TABLE IF NOT EXISTS ESTADO (ID_ESTADO INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,DESCRIPCION varchar(45) DEFAULT NULL);
Thanks!