如何使用 JPA 2 标准查询计算年龄?

发布于 2024-12-08 19:42:54 字数 163 浏览 0 评论 0原文

我很惊讶我找不到关于这个主题的任何内容:

如何根据给定日期计算一个人的年龄 出生日期并仅使用常规 JPA 标准查询?

有很多原生 SQL 解决方案,但我找不到一个简单而优雅的与供应商无关的标准。

干杯!

I'm quite amazed that I could not find anything on this topic:

How do I calculate the age of a person at a given date, based on a
date of birth and using only regular JPA criteria queries?

There are plenty of native SQL solutions, but I could not find a simple and elegant vendor-agnostic criteria.

Cheers!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

岁月苍老的讽刺 2024-12-15 19:42:54

JPA 2.0 中没有针对日期操作数的算术运算。此外,JP QL 中现有的三个与日期相关的函数(CURRENT_DATE、CURRENT_TIME、CURRENT_TIMESTAMP)和 Criteria API 中的相应方法(currentDate()、currentTime()、currentTimestamp())与计算无关。这使得无法使用日期进行计算。正如 JB Nizet 所说,只需用 Java 进行计算即可。

There is no arithmetic operations for date operands in JPA 2.0. Also three existing date related functions in JP QL (CURRENT_DATE, CURRENT_TIME, CURRENT_TIMESTAMP) and corresponding methods in Criteria API (currentDate(), currentTime(), currentTimestamp()) have nothing to do with calculations. That makes it impossible to perform calculations with dates. Just calculate in Java, as JB Nizet said.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文