SELECT * FROM quotes WHERE approved=1 ORDER BY rand() LIMIT 1
SELECT *, rand() AS r FROM quotes WHERE approved='1' ORDER BY r LIMIT 1