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

Eine vorbereitete Anweisung, `WHERE .. IN(..)` Abfrage und Sortierung — mit MySQL

Sie könnten es so machen:

$ids = array(1,5,18,25);

// creates a string containing ?,?,? 
$clause = implode(',', array_fill(0, count($ids), '?'));


$stmt = $mysqli->prepare('SELECT * FROM somewhere WHERE `id` IN (' . $clause . ') ORDER BY `name`;');

call_user_func_array(array($stmt, 'bind_param'), $ids);
$stmt->execute();

// loop through results

Wenn Sie dies verwenden, rufen Sie bind_param für jede ID auf und Sie haben die Sortierung mit mysql durchgeführt.