select-random-row-in-sql
Select random row in SQL
MySQL
SELECT column FROM table
ORDER BY RAND()
LIMIT 1
PostgreSQL
SELECT column FROM table
ORDER BY RANDOM()
LIMIT 1
References
Last updated
Was this helpful?