doctrine dql数组和对象同时

时间:2017-07-05 06:02:16

标签: symfony doctrine-orm dql

我有两个实体,我希望从第一个实体获取不同元素及其计数的列表,并将整个第二个实体作为对象。我不确定我是否可以解释它,因为我的英语不好。

所以,这是函数:

public function findMostPopular()
{
    return $this->getEntityManager()
        ->createQuery("
            SELECT 
                e,
                COUNT(p.event) c,
                IDENTITY(p.event) m
            FROM AppBundle:Predictions p
            LEFT JOIN p.event e
            WHERE p.status = 'pending'
            GROUP BY p.event
            ORDER BY c DESC , m ASC
        ")
        ->setMaxResults(5)
        ->getResult()
    ;
}

当我试着打电话时,我收到了这个错误:

[语义错误]第0行,col -1附近' 选择 ':错误:如果不选择至少一个根实体别名,则无法通过标识变量选择实体。

这种方式甚至可以得到我想要的东西吗?

编辑:表中的示例数据:

737117017
737117017
737117017
737561075
737561075
737561075
738821787
738821787
738821787
738848055
739040139

我想要计算每个不同的值。这些是带有事件的表的外键,所以我想要事件表中的相应对象。

! c !  m        !   event                                    !
--------------------------------------------------------------
! 3 ! 737117017 !  the object from events with id 737117017  !
! 3 ! 737561075 !  the object from events with id 737561075  !
! 3 ! 738821787 !  the object from events with id 738821787  !
! 1 ! 738848055 !  the object from events with id 738848055  !
! 1 ! 739040139 !  the object from events with id 739040139  !
--------------------------------------------------------------

修改2

我按照以下方式开始工作。我确定,这不正确,但我不知道正确的方法。

SELECT
    p,
    e,
    COUNT(p.event) c,
    IDENTITY(p.event) m
FROM AppBundle:Predictions p
LEFT JOIN p.event e
WHERE p.status = 'pending'
GROUP BY p.event
ORDER BY c DESC , m ASC

1 个答案:

答案 0 :(得分:1)

根据提到的问题,您必须更改查询中实体的顺序,因此它应该类似于:

public function findMostPopular()
{
  return $this->getEntityManager()
    ->createQuery("
        SELECT 
            e,
            COUNT(p.event) c,
            IDENTITY(p.event) m
        FROM AppBundle:Event e
        LEFT JOIN e.predictions p
        WHERE p.status = 'pending'
        GROUP BY p.event
        ORDER BY c DESC , m ASC
    ")
    ->setMaxResults(5)
    ->getResult()
  ;
}