gpt4 book ai didi

php - Symfony2 - Doctrine2 QueryBuilder WHERE IN ManyToMany 字段

转载 作者:行者123 更新时间:2023-11-29 02:24:24 25 4
gpt4 key购买 nike

:)

预先感谢您帮助我解决这个问题:

我有一个实体酒店,它与实体酒店服务有多对多关系

我如何构建(如果可能,使用 QueryBuilder)一个查询来选择所有具有作为数组参数给出的服务子集的酒店?

例子:H1(S1, S2, S3, S4), H2(S2, S3, S4), H3(S1, S2, S3)

查询子集 (S1, S2) 必须返回 H1 和 H3。

我已经尝试了很多东西,这是一些代码摘录:

public function findByServices($services) {
 
    $qb = $this->createQueryBuilder('hotel')
 
            ->addSelect('location')
 
            ->addSelect('country')
 
            ->addSelect('billing')
 
            ->addSelect('services')
 
            ->innerJoin('hotel.billing', 'billing')
 
            ->innerJoin('hotel.location', 'location')
 
            ->innerJoin('location.city', 'city')
 
            ->innerJoin('location.country', 'country');
 
            ->innerJoin('hotel.services', 'services');
 
    $i = 0;
    $arrayIds = array();
    foreach ($services as $service) {
        $arrayIds[$i++] = $service->getId();
    }
    $qb->add('where', $qb->expr()->in('services', $arrayIds))->getQuery();
}

此代码返回 $arrayIds 中有一个服务 ID 的所有酒店。

我想要相反的东西(服务包含 $arrayIds 中所有 ID 的酒店)。

当然,反转 expr()->in 中的参数并不能解决问题,并且会产生错误的参数错误。

有人可以帮帮我吗? (抱歉我的英语不好):)

最佳答案

对于您的解决方案,您可以使用带有 HAVINGGROUP BY 子句的 COUNT(DISTINCT)

public function findByServices($services)
{
$qb = $this->createQueryBuilder('hotel')
->addSelect('location')
->addSelect('country')
->addSelect('billing')
->addSelect('services')
->addSelect('COUNT(DISTINCT services.id) AS total_services')
->innerJoin('hotel.billing', 'billing')
->innerJoin('hotel.location', 'location')
->innerJoin('location.city', 'city')
->innerJoin('location.country', 'country')
->innerJoin('hotel.services', 'services');
$i = 0;
$arrayIds = array();
foreach ($services as $service) {
$arrayIds[$i++] = $service->getId();
}
$qb->add('where', $qb->expr()->in('services', $arrayIds))
->addGroupBy('hotel.id')
->having('total_services = '.count($arrayIds))
->getQuery();
}

在上面的查询中,我又添加了一个选择来计算每家酒店的不同服务 ID,即

->addSelect('COUNT(DISTINCT services.id) AS HIDDEN total_services')

然后我还需要一个分组依据,所以我添加了

->addGroupBy('hotel.id')


现在棘手的部分来了,正如您提到的,您需要拥有所有服务 ID(如 ids (1,2,3))的酒店,因此当我们在其执行或操作中使用时,应返回包含这 3 个服务的酒店where servid_id = 1 or servid_id = 2 servid_id = 3 这恰恰是你不想要酒店必须有这 3 个的 AND 操作所以我转换了这个逻辑

->having('total_services = '.count($arrayIds))

现在 total_services 是查询的虚拟别名,并保存每家酒店的不同计数,因此我将此计数与 IN() 中提供的 ID 计数进行了比较这部分将返回必须包含这些服务的酒店


GROUP BY and HAVING Clause

关于php - Symfony2 - Doctrine2 QueryBuilder WHERE IN ManyToMany 字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25576818/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com