Is there any way to do the following in HQL:
SELECT
case when flag = true then SUM(col1) else SUM(col2)
FROM
myTable
hibernatehqlnhibernate
Is there any way to do the following in HQL:
SELECT
case when flag = true then SUM(col1) else SUM(col2)
FROM
myTable
Best Solution
I guess you can (3.6, 4.3) [inline edit] ...for where-clauses: