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?
|
feedback
|
|
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 The default value of | |||
|
feedback
|