gpt4 book ai didi

mysql - Symfony 2/Doctrine 2,带 BIT_AND 运算符的 ORDER BY

转载 作者:行者123 更新时间:2023-11-30 01:22:08 24 4
gpt4 key购买 nike

我需要在数据库中检索一些 tsk,并通过字段上的二进制运算对它们进行排序。这就是我想要的:

    $query = $this->getEntityManager()->createQueryBuilder()
->select('t')
->from('MyBundle:Task', 't');
$query->orderBy('BIT_AND(t.options, 1)', 'DESC');

我不想每个“选项”都有一个字段,因此我的所有选项都是字段中的“位”。

之前的代码不起作用。我尝试过这样做:

    $query = $this->getEntityManager()->createQueryBuilder()
->select('t', 'BIT_AND(t.options, 1) as myoption')
->from('MyBundle:Task', 't');
$query->orderBy('myoption', 'DESC');

但在这种情况下,我丢失了关系中的对象...因为我的任务与用户相关,并且我想做 $task->getUser() (或更准确地说在 twig 中:task.user)

所以我的问题是:- 如何使用二元运算符对数据进行排序?- 如果我正在进行多项选择,如何才能使我的对象保持正确的水合状态?

非常感谢!

最佳答案

我找到了解决方案。

$query = $this->getEntityManager()->createQueryBuilder()
->select('t')
->addSelect('BIT_AND(t.options, 1) AS HIDDEN option')
->from('MyBundle:Task', 't');
$query->orderBy('option', 'DESC');

它正在研究原则 2.2+

关于mysql - Symfony 2/Doctrine 2,带 BIT_AND 运算符的 ORDER BY,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18419490/

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