2
HQL是否支持集合函數中的條件表達式?集合函數中的hql條件表達式
我願做這樣的事情
select
o.id,
count(o),
count(o.something is null and o.otherthing = :other)
from objects o
但我從ANTLR的解析器MissingTokenException。
編輯:通過使用子查詢它的工作,但它的醜陋,因爲我受到幾個變量的分組...