Java has the PreparedStatement addBatch + executeBatch to do multiple insertions efficiently.
What is the fasted way to do a batch of inserts using php's mysqli extension?
Thanks!
Java has the PreparedStatement addBatch + executeBatch to do multiple insertions efficiently.
What is the fasted way to do a batch of inserts using php's mysqli extension?
Thanks!
MySQL natively supports multiple insertions with one query.
INSERT INTO [Table] ([Column List])
VALUES ([Value List 1])
, ([Value List 2])
[...]
, ([Value List N])