Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Doctrine Query Builder using Array

I have an array of id:

Id_array; //array(2) { [0]=> int(9) [1]=> int(10) } 

I simply want to select the users using Id_array; I managed to do this when I don't have an array but just an integer:

$query = $em->createQuery('SELECT u FROM Users u WHERE u.id = ?1');
$query->setParameter(1, 9); // I tested the value 9 here
$users = $query->getResult(); 

How can I fetch all the users that correspond to Id_array?

like image 866
Mick Avatar asked Jul 19 '12 06:07

Mick


2 Answers

Or without the query builder:

$query = $em->createQuery('SELECT u FROM Users u WHERE u.id IN (:id)');
$query->setParameter('id', array(1, 9));
$users = $query->getResult();
like image 157
ZolaKt Avatar answered Oct 08 '22 00:10

ZolaKt


In case someone runs into something similar, I used the query builder, The key point is to use the IN statement.

//...
$qb = $this->createQueryBuilder('u');
$qb->add('where', $qb->expr()->in('u.id', ':my_array'))
->setParameter('my_array', $Id_array);
like image 45
Mick Avatar answered Oct 07 '22 23:10

Mick