MySQL: How to retrieve a random row or multiple random rows?

You can use ORDER BY RAND() to get random rows in your query.

Leave a Comment