Most Efficient Way To Retrieve MYSQL data in random order PHP
- by Belgin Fish
Hey, I have a query like so
SELECT * FROM table WHERE premium = 3
I'm just wondering how I can have it return a random order for the results!
i was told not to use ORDER BY RAND(); because of the amount of system resources it uses.
Thanks.