I can SELECT
a random number between 0 and 1000 by doing:
SELECT ROUND((RAND()*1000))
-- 931
However, why I try and do that in a limit I get a error:
...LIMIT ROUND((RAND()*1000))
Undeclared variable: round
Why does this error occur? Is these another way to do a random limit like this in mysql?