如何将此查询转换为DQL:
SELECT etat, count( * ) AS 'nombre' from commande GROUP BY etat;
答案 0 :(得分:0)
请试试这个
select c,count(c.id) nombre from acmeBundle:commande c group by c.etat
其中 子句未包含在内。 你应该有commande实体。它将返回commande实体和count的所有字段。您可以根据自己的需要进行纠正