真正需要 Hibernate HQL 而不是 JPQL 的用例
我知道 JPQL 是 HQL 的子集。
是否有任何实际用例(请给出示例)确实需要使用 HQL 特定功能(这意味着使用 JPQL 不可能或相当困难)来实现它们?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
每次您想要使用 HQL 文档,并且 JPQL 不支持:
Each time you want to use one of the expressions/functions listed in the HQL documentation, and which is not supported by JPQL :
我的结论是,没有任何实际用例是仅使用 JPQL(不使用 HQL)不可能或相当困难实现的
I conclude that there is no practical usecase that is impossible or considerably difficult to implement only with JPQL (without using HQL)