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

Symfony2.3 query sql grezza con clausola IN

Risposta:

Quindi ci sono almeno due errori che hai fatto. Il primo è quello che ha detto @Alarid:non dovresti far implodere il tuo array. Il secondo è che devi usare DoctrineDBALTypes Conversion per IN clause durante l'esecuzione di un'istruzione preparata.

E alla fine la tua domanda è questa:

$stmt = $this->getDoctrine()->getEntityManager()
        ->getConnection()
        ->prepare('SELECT t1.id , t1.name , t2.start_date , t2.end_date
        FROM table1 t1 , table2 t2
        WHERE t1.id = t2.matchId AND  t1.id IN (:ids)');

$stmt->bindValue('ids', $idSArray, \Doctrine\DBAL\Connection::PARAM_INT_ARRAY);
$stmt->execute();

O in alternativa:

$stmt = $this->getDoctrine()->getEntityManager()
    ->getConnection()
    ->executeQuery('SELECT t1.id , t1.name , t2.start_date , t2.end_date
        FROM table1 t1 , table2 t2
        WHERE t1.id = t2.matchId AND  t1.id IN (:ids)',
        array('ids' => $idSArray),
        array('ids' => \Doctrine\DBAL\Connection::PARAM_INT_ARRAY)
    )
;