我的数据库中有一个表...我想通过读取table1
上的记录向sqlite_sequence
插入一行......我知道sqlite_sequence
表是AUTOINCREMENT ...以及我的table1
也有_id
的AUTOINCREMENT ......
我试过这个:
INSERT INTO table1 (column_1, column_2) VALUES ((SELECT seq FROM sqlite_sequence WHERE name=other_table),`other_column`);
但插入后,插入的行将被删除table1
...
我想知道other_table
中的最后一行ID ...我尝试使用last_insert_rowid()
代替(SELECT seq FROM sqlite_sequence WHERE name=other_table)
...但结果是相同的......
我的错在哪里?谢谢!