Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Laravel MySQL how to order Ergebnisse in der gleichen Reihenfolge wie in der whereIn-Klausel

MySQL Art der Sortierung mit Reihenfolge wie in where in Klausel:

$ids; // array of ids
$placeholders = implode(',',array_fill(0, count($ids), '?')); // string for the query

Operation::whereIn('id', $ids)
   ->orderByRaw("field(id,{$placeholders})", $ids)->get();