8
votes
7answers
484 views
What is the best way to pick a random row from a table in MySQL?
I have seen random rows pulled using queries like this, which are quite inefficient for large data sets.
SELECT id FROM table ORDER BY RANDOM() LIMIT 1
I have als …
