SELECT rowid, * FROM table1;
CREATE TABLE table2(x); INSERT INTO table2(rowid, x) VALUES(123,'hi');
UPDATE table2 SET rowid=rowid-1 WHERE rowid=123;