DISTINCT声明在Doctrine中不起作用

问题描述 投票:0回答:1

我尝试从学说获得不同的行,但它不起作用(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查询:

enter image description here

我想要这个查询:

SELECT  count(DISTINCT hotel_id) FROM symfony.search_result where request_id=@requrst_id 
symfony doctrine-orm dql
1个回答
0
投票

根据您的更新,您要构建的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计数的结果

© www.soinside.com 2019 - 2024. All rights reserved.