Hi all,
So, I'm building a table of pre-calculated data through a PHP script on a regualr basis (once an hour..)
The table gets populated with a huge amount of data (thousands of rows) with every build and currently my script is INSERTing rows one at a time.
Browsing the net I see there's a way to do multiple INSERTs through one SQL statement.
My question is (and it's probably a stupid one but here goes..) Is it quicker to do a single massive INSERT over possibly thousands of individual ones - my guess is "yes" but I thought I'd ask 🙂
I also saw someone comment on the use of INSERT DELAYED - can anyone shed any light on whether this is worth using ?
TIA
Chris