Reputation: 16441
I know JPQL is a subset of HQL.
Are there any practical usecases (please give examples) that really need HQL specific features to be used (that means it is impossible or considerably difficult with JPQL) to implement them?
Upvotes: 2
Views: 1577
Reputation: 16441
I conclude that there is no practical usecase that is impossible or considerably difficult to implement only with JPQL (without using HQL)
Upvotes: 0
Reputation: 691775
Each time you want to use one of the expressions/functions listed in the HQL documentation, and which is not supported by JPQL :
Upvotes: 4