MySQL: RAND() returning same results in the SELECT statement?
i am working with script where i need to choose random customer for lottery ticketing winner . but thing is it always choosing almost same guys all the time
select * from users where RAND()
and it giving almost same result
it choosing only two guy one by one . so i wondering why is mysql RAND() function giving me same result .