I have a fairly simple SQL (MySQL):
SELECT foo FROM bar ORDER BY rank, RAND()
I notice that when I refresh the results, the randomness is s
The RAND() can not be refresh for each row. A possible solution might be:
RAND()
SELECT foo FROM bar ORDER BY rank, CHECKSUM(NEWID())