gpt4 book ai didi

ios - iOS 中的 SQLite 多个 INSERT

转载 作者:行者123 更新时间:2023-11-28 18:25:24 25 4
gpt4 key购买 nike

我想在表中插入千条记录,现在我正在使用

INSERT INTO myTable ("id", "values") VALUES ("1", "test")
INSERT INTO myTable ("id", "values") VALUES ("2", "test")
INSERT INTO myTable ("id", "values") VALUES ("3", "test")

一条一条查询插入记录,但是执行时间很长,

现在我想从一个查询中插入所有记录...

INSERT INTO myTable ("id", "values") VALUES
("1", "test"),
("2", "test"),
("3", "test"),
.....
.....
("n", "test")

但是这个查询不适用于 Sqllite,你能给我一些解决这个问题的指导吗

谢谢,

最佳答案

Please refer my answer here .

在 sqlite 中没有查询可以支持你的结构,这是我用来在 db 中插入 1000 条记录的。性能好。你可以试一试。 :)

关于ios - iOS 中的 SQLite 多个 INSERT,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11187709/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com