Doctrine 2 DQL CASE WHEN in Count(Doctrine 2 DQL CASE WHEN in Count)
问题描述
我在本机 MySQL 代码中有这个查询
I have this Query in native MySQL Code
SELECT *
FROM `turn`
LEFT JOIN (
poi
) ON ( turn.id = poi.turn_id )
GROUP BY turn.id
ORDER BY count( case when poi.image = 1 then 1 else null end) DESC;
我需要在 Doctrine 2 DQL 中重建它
I need to rebuild this in Doctrine 2 DQL
到目前为止我的尝试是这样的:
My attempt so far is this:
SELECT t, COUNT((CASE WHEN BundleEntityPoi p.image = 1 then 1 ELSE NULL END)) AS num
FROM BundleEntityTurn t
JOIN t.pois p
GROUP BY t.id
ORDER BY num DESC
我收到此错误:
在 Bundle:Admin:showTurnsFiltered.html 中渲染模板时抛出异常([语法错误] line 0, col 99: Error: Expected end of string, got '.'").twig 在第 75 行.
我做错了什么?
推荐答案
经过数小时的尝试和搜索,我自己找到了它,它与此 DQL 配合使用:
I found it by myself after hours of trying and searching, it's working with this DQL:
$dql = 'SELECT t, SUM(CASE WHEN p.image = 1 THEN 1 ELSE 0 END) AS numImage
FROM BundleEntityTurn t
JOIN t.pois p
GROUP BY t.id
ORDER BY numImage DESC;
重要的是您需要使用 SUM 而不是 COUNT
Important that you need to use SUM instead of COUNT
这篇关于Doctrine 2 DQL CASE WHEN in Count的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Doctrine 2 DQL CASE WHEN in Count


- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- 更改自动增量起始编号? 2021-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01
- 在SQL中,如何为每个组选择前2行 2021-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- SQL 临时表问题 2022-01-01
- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
- 导入具有可变标题的 Excel 文件 2021-01-01
- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01