SQLクエリがあります
select count(salary)
from USER_DETAILS
where salary>0 and salary<1000 union all
select count(salary)
from USER_DETAILS
where salary>1000 and salary<10000 union all
select count(salary)
from USER_DETAILS
where salary>10000 and salary<100000
同じクエリを実行する他の論理的またはより堅牢な方法はありますか(できればhqlで)。
前もって感謝します