希望在 JPQL 中执行可能的子选择。我经常使用 SQL,并希望执行如下查询:
Select ((Select SUM(e.hours.hours) from app$Time e
where e.type = 'Purchased')
-
(Select SUM(f.hours.hours) from app$Time f
where f.type = 'Used'))
我还没有看到很多 JPQL 执行这样的查询的例子,希望这是可能的。
希望在 JPQL 中执行可能的子选择。我经常使用 SQL,并希望执行如下查询:
Select ((Select SUM(e.hours.hours) from app$Time e
where e.type = 'Purchased')
-
(Select SUM(f.hours.hours) from app$Time f
where f.type = 'Used'))
我还没有看到很多 JPQL 执行这样的查询的例子,希望这是可能的。