Reputation: 878
Let say that I have a table of some data. I want am running a query using ORM in Kohana 2.3.
ORM::factory('somemodel')->find_all(); // ordered by $sort
I want to modify that query to return shuffled results.
Upvotes: 0
Views: 146
Reputation: 535
Use rand.
Here is the example for it
http://docs.kohanaphp.com/libraries/database/builder#orderby
Upvotes: 1