SQLite扩展插入

时间:2012-09-18 13:53:52

标签: php sqlite

这很有效。

INSERT INTO matrix (id, ref) VALUES (1, 47557);

这些没有。

INSERT INTO matrix (id, ref) VALUES (1, 47557), (2, 47558), (17, 47573), (18, 47574), (19, 47575);
INSERT INTO matrix (id, ref) VALUES ((1, 47557), (2, 47558), (17, 47573), (18, 47574), (19, 47575));

有没有办法进行扩展的SQLite查询?

根据这个: http://www.sqlite.org/lang_insert.html 它应该工作.....

1 个答案:

答案 0 :(得分:2)

之前已经提出过您的问题。

Is it possible to insert multiple rows at a time in an SQLite database?

下次请先搜索数据库:)