As I know it, this is how you select randomly ordered rows in MySQL:
SELECT * FROM test ORDER BY RAND() ASC;
Now this will return me a randomly ordered set of rows.
But what if I wanted to grab the same random set twice? I can't use RAND() again, as that changes every time.
I tried typing in the actual decimal number that RAND() produces, but that didn't seem to work either.
Any help?