I want to add 10,000 rows to a MySQL table. The table has a field, let’s call it “Number”, that needs to increment from 540000 to 549999.
This is just something that needs to run once, so performance is not critical. Is there a MySQL command that will do this, or do I need to write a script to call 10,000 insert statements?
I ended up creating a script with 10,000 insert statements.