SELECT etat,count(*)AS'nombre'来自commande GROUP BY etat;

时间:2013-05-09 11:44:34

标签: symfony

如何将此查询转换为DQL:

SELECT etat, count( * ) AS 'nombre' from commande GROUP BY etat;

1 个答案:

答案 0 :(得分:0)

请试试这个

select c,count(c.id) nombre from acmeBundle:commande c group by c.etat

其中 子句未包含在内。 你应该有commande实体。它将返回commande实体和count的所有字段。您可以根据自己的需要进行纠正