What is the record limit (n) of MySQL extended insert statement?

INSERT INTO table (field) VALUES (1),(2),(n)

What happens when the limit exceeds? Will only overflow rows left out or the whole statement failed?

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

I don't believe there's any hard limit on the number of rows inserted. There is a limit on the maximum size of a MySQL query in general, though; statements longer than the setting of max_allowed_packet will be rejected by the server. (They won't run at all.)

The default value of max_allowed_packet is 1 MB. That's still quite a bit. :)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.