我尝试从学说获得不同的行,但它不起作用(uniq酒店)
$qb = $this->createQueryBuilder('self');
$qb
->distinct('hotel')
->join('self.hotel', 'hotel')
->where('self.request = :id')
->setParameter('id',$requestId);
return $qb->getQuery()->getResult();
这个DQL返回所有酒店。
来自Symfony的SQL查询:
我想要这个查询:
SELECT count(DISTINCT hotel_id) FROM symfony.search_result where request_id=@requrst_id
根据您的更新,您要构建的DQL就是这个
$qb = $this->createQueryBuilder('self');
$qb
->select($qb->expr()->countDistinct('hotel.id'))
->join('self.hotel', 'hotel')
->where('self.request = :id')
->setParameter('id',$requestId);
return $qb->getQuery()->getSingleScalarResult();
请注意,我改变了
->distinct('hotel')
到->select($qb->expr()->countDistinct('hotel.id'))
我也改变了
getResult()
到getSingleScalarResult()
现在它只返回一个带有唯一hotel_ids计数的结果