13
सिद्धांत 2 के साथ WHERE IN का उपयोग कैसे करें
मेरे पास निम्नलिखित कोड है जो मुझे त्रुटि देता है: Message: Invalid parameter number: number of bound variables does not match number of tokens कोड: public function getCount($ids, $outcome) { if (!is_array($ids)) { $ids = array($ids); } $qb = $this->getEntityManager()->createQueryBuilder(); $qb->add('select', $qb->expr()->count('r.id')) ->add('from', '\My\Entity\Rating r'); if ($outcome === 'wins') { …