In MySQL, you can select X random rows with the following statement:
SELECT * FROM table ORDER BY RAND() LIMIT X
This does not, however, wo
SELECT * FROM table ORDER BY RANDOM() LIMIT X