I have MySQL query, that returns set of rows. What I need is to get them in random order, each time that the query is executed.
For example, I have query
SELECT id,id_banner,name FROM module_banner
And it returns me 3 rows with ids - 1,2,3
I want to get them in random order - 3,2,1 2,3,1 1,3,2 and so on.
Let me know if the question is not clear
P.S.
Is there solution without RANDOM() function ?