Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
除了使用更新的 PrimaryKey 之外,在 Sqlite3 数据库中精确复制行的最有效方法是什么?
使用insert .. select插入和选择引用相同关系的位置。然后整个操作将在 SQLite 代码本身中作为单个语句发生,在“效率”方面无法被击败。
insert .. select
使用自动 PK 会更容易(只是不要选择 PK 列),尽管如果可以派生,也可以分配适当的自然键。
请参阅SQLite INSERT SELECT 查询结果到现有表中?