Hibernate - 限制(日历、小时)

发布于 2024-11-30 19:10:15 字数 258 浏览 1 评论 0原文

我可以使用休眠限制(我的意思是 ID 130、146、147、148)从表中获取在指定时间(例如上午 9 点)创建的项目吗?

在此处输入图像描述

你能告诉我如何 (createDateCalendar Java 中的格式)?

Can I get items created at specified hour (e.g. 9am) from the table using by hibernate restrictions (i mean ids 130, 146, 147, 148)?

enter image description here

Can you tell me how (createDate is in Calendar format in Java)?

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

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

发布评论

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

评论(1

℉絮湮 2024-12-07 19:10:15

是否必须使用限制来完成?不能用别的东西吗?如果是,那么你应该能够用这样的方法来做到这一点:

Restrictions.sqlRestriction("DATEPART(hour,createDate) = 09")

不确定 09 中的 0 并且没有自己测试它,但不明白为什么它不应该工作。

Does it have to be done using Restrictions? Can't you use something else? If yes then you should be able to do it with something like this:

Restrictions.sqlRestriction("DATEPART(hour,createDate) = 09")

Not sure about the 0 in 09 and didn't test it myself but don't see why it shouldn't work.

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