sqlite:使用sqlite_sequence记录插入一行

时间:2016-01-26 08:09:52

标签: sqlite

我的数据库中有一个表...我想通过读取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) ...但结果是相同的...... 我的错在哪里?谢谢!

0 个答案:

没有答案