Let's say I have Sqlite table with a column which its datatype is INTEGER PRIMARY KEY AUTOINCREMENT If I add a row into it I get a row with id of 1, then if I delete that row and add another row its id will be 2 instead of 1
How can I decrement the id whenever I delete a row?
Thank you