gpt4 book ai didi

php - 使用查询构建器创建子查询

转载 作者:行者123 更新时间:2023-12-05 05:22:53 27 4
gpt4 key购买 nike

我尝试在 Doctrine 查询生成器中转换 SQL 查询(工作正常)但我没有成功,因为它包含一个子查询

这是我的 SQL 查询:

SELECT * 
FROM `navigation`
WHERE `parent_id` =
(
SELECT `id`
FROM `navigation`
WHERE `parent_id` = 47
AND `nav_type`= 'nav'
AND `published` = 1
AND `title` = 'Top'
)

这就是我在我的存储库中尝试的:

class NavigationRepository extends EntityRepository
{
public function test($parentId, $type, $status, $title)
{
$subQuery = $this->createQueryBuilder('n2')
->select('n2.id')
->where('n2.parent = :parent')
->andWhere('n2.type = :type')
->andWhere('n2.status = :status')
->andWhere('n2.title = :title')
->setParameter('parent', $parentId)
->setParameter('type', $type)
->setParameter('status', $status)
->setParameter('title', $title)
->getDQL();

$qb = $this->createQueryBuilder('n');
$qb
->where(
$qb->expr()->eq('n.parent', '('.$subQuery.')')
)
->getQuery()
->getResult();

return $qb
->getQuery()
->getResult();
}
}

但是我得到了这个错误:

QueryException: Invalid parameter number: number of bound variables does not match number of tokens

为什么?看来我还有正确数量的参数......

最佳答案

您应该在 $qb 而不是 $subQuery 上调用 setParameter()。 DQL 不包含插值参数,它只是一个常规字符串。

关于php - 使用查询构建器创建子查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39407779/

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