Batch inserts with PHP

前端 未结 2 334
野趣味
野趣味 2021-01-23 21:21

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 extensi

2条回答
  •  醉话见心
    2021-01-23 21:51

    MySQL natively supports multiple insertions with one query.

    INSERT INTO [Table] ([Column List])
    VALUES ([Value List 1])
         , ([Value List 2])
           [...]
         , ([Value List N])
    

提交回复
热议问题