CREATE TABLE tblUser(
userid INTEGER PRIMARY KEY AUTOINCREMENT,
userName TEXT NOT NULL,
userContactNo TEXT NOT NULL,
userCountryCode TEXT NOT NULL,
transactionCreatedDate INTEGER NOT NULL
)
this my table and I want to start userid form the 101.
Example
userid username userContactNo userCountryCode transactionCreateDate
101 John 75964348 +1 1719895982000
102 Deni 99894348 +1 1719896408000
.
.
.