Mysql
 sql >> Database >  >> RDS >> Mysql

Laravel MySQL how to order risulta nello stesso ordine della clausola whereIn

MySQL modo di ordinare con ordine come in where in clausola:

$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();