i'm trying to select 5 rows randomly from my table using RAND() in mysql, and i've set the LIMIT as 5 but why sometimes it will return less than 5 rows?
Here is my Query:
SELECT id from MAIL where RAND() limit 5;
MAIL is my table name which contains more than 20 Records.