I want a way to be able to benchmark a query like 1,000,000 times. What's the easiest way to do this? Currently I've searched for a way to issue a query multiple times but nothing pops up.
I've also come across the benchmark() command that can be run in mysql command line, but it seems to have some limitations and I can't seem to get it to work.
From the MySQL Documentation:
You could paste this code in phpmyadmin's SQL tab, then run it.
This isn't really the job of phpMyAdmin, a GUI for MySQL beginners.
Put the query in a script, in a loop that runs 1,000,000 times.
Though that's not a very good benchmark of anything. If you're trying to simulate real demand, you need to have some concurrent activity, not just 1,000,000 queries issued and returned one at a time.
i would suggest doing loop test from script level as this would give a better time of the demand.