You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems that execute_many would run an INSERT as many times as I have rows to insert. Is there an optimisation available to perform a multi row inserts as part of one INSERT statement?
insert into table values (1,1), (1,2), (1,3), (2,1);
Or would I have to manually create that statement with the desired batch size? Basically a helper would be amazing, ideally for better insert performance