How can I request a random row (or as close to truly random as is possible) in pure SQL?
Random function from the sql could help. Also if you would like to limit to just one row, just add that in the end.
SELECT column FROM table ORDER BY RAND() LIMIT 1