Is there a way to randomize a limit number in SQL (MySQL)?
What I\'d like to be able to do is get a random number of results in a query to use in an insertion subquery w
For MySQL specifically:
SET @i = 0; SELECT * FROM users WHERE (@i:=@i+1) < RAND()*1000 ORDER BY RAND();