Is it possible to insert a line in the middle of the table and move the id?
Table:
id | val -------- 1 | value 1 -------- 2 | value 2 -------- 3 | value 3
After insertion (id 2, value 4):
id | val -------- 1 | value 1 -------- 2 | value 4 -------- 3 | value 2 -------- 4 | value 3