Select Random Row
SELECT r.* FROM random AS r JOIN (SELECT RAND() * (SELECT MAX(id) FROM random) AS id) AS r2 WHERE r.id >= r2.id LIMIT 1;