Kaiser
Kaiser

Reputation: 878

Shuffled result in ORM query

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

Answers (1)

praneeth
praneeth

Reputation: 535

Use rand.

Here is the example for it

http://docs.kohanaphp.com/libraries/database/builder#orderby

Upvotes: 1

Related Questions