MySQL 在 Eloquent 中按字段排序

2022-08-30 14:50:50

当我想在MySQL查询中定义自定义排序顺序时,我可以做这样的事情:

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

Eloquent ORM版本是什么?

更新:

这是解决方案,在各个字段上订购时也有效:

$events = Event::with( 'type', 'location' )
               ->orderBy( 'event_type_id' )
               ->orderByRaw( "FIELD(status, 'good', 'bad', 'hidden', 'active', 'cancelled')" )
               ->orderBy( 'date' );

答案 1

使用任一或直接使用应该可以工作:DB::raw()orderByRaw

$models = Model::orderByRaw('FIELD(language, "USD", "EUR", "JPN")')->get();
// or
$models = Model::orderBy(DB::raw('FIELD(language, "USD", "EUR", "JPN")'))->get();

答案 2

在 FIELD() 的第二个参数中使用 implode

 $facilities = $query->with(['interest','city:id,name', 'state:id,name'])
        ->Active()
        ->whereIn('facility_id', $facilities_list)
        ->orderByRaw('FIELD(facility_id, '.implode(", " , $facilities_list).')')
        ->get();

推荐