in reply to Batch DB query -- implementation?
In addition to sending more insert statements at once, it is considered ONE statement only. It means that the query will be parsed only once and execute much faster than sending N separate statements.INSERT INTO UberTable (Arg1,...ArgN) VALUES (Val1,...,ValN), (Val1,...,ValN), (Val1,...,ValN), (Val1,...,ValN);
|
|---|