How can I best write a query that selects 10 rows randomly from a total of 600k?
I guess this is the best possible way..
SELECT id, id * RAND( ) AS random_no, first_name, last_name FROM user ORDER BY random_no