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
How about this:
SELECT * FROM users ORDER BY RAND() HAVING RAND() * 1000 < 10
The clause WHERE RAND() * 1000 < 10 randomly chooses to include each row with a probability of 1%. It's not quite a LIMIT variable clause but will do roughly the same thing.
WHERE RAND() * 1000 < 10
LIMIT variable