Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MySQL order by field in Eloquent

Tags:

When I want to define a custom sort order in a MySQL query I can do something like this:

ORDER BY FIELD(language,'USD','EUR','JPN') 

What would be the Eloquent ORM version of that?

UPDATE:

This is the solution and it also works when ordering on various fields:

$events = Event::with( 'type', 'location' )                ->orderBy( 'event_type_id' )                ->orderByRaw( "FIELD(status, 'good', 'bad', 'hidden', 'active', 'cancelled')" )                ->orderBy( 'date' ); 
like image 808
wout Avatar asked Apr 15 '15 19:04

wout


1 Answers

Using either DB::raw() or orderByRaw directly should work:

$models = Model::orderByRaw('FIELD(language, "USD", "EUR", "JPN")')->get(); // or $models = Model::orderBy(DB::raw('FIELD(language, "USD", "EUR", "JPN")'))->get(); 
like image 196
lukasgeiter Avatar answered Mar 04 '23 15:03

lukasgeiter