Rather than creating row after row of test data one at a time, is there a query I could run in MySQL to do the following:
Table name: my_table
Rows consist of: ID (auto-incremental), fname, lname, email, phone
The test data should be duplicated into 100 rows, where the data would be:
1 John Doe jdoe@jdoe.com 0000000
2 John Doe jdoe@jdoe.com 0000000
...
100 John Doe jdoe@jdoe.com 0000000
Thanks!
This SQL should do the trick – just modify the INSERT