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

Formato corretto per query PDO e MySQL IN/NOT IN

Crea un array di tanti ? come hai valori, e inseriscilo nella query.

$placeholders = array_fill(0, count($thingArray), '?');
$sql = "SELECT thing FROM things WHERE thing_uid IN (" . implode(',', $placeholders) . ")";