HQL 中没有时间的不同日期时间字段

发布于 2024-12-07 11:14:12 字数 187 浏览 0 评论 0原文

我正在尝试在 HQL 中选择不同的日期时间字段。

select distinct CreatedDate from ClaimFile order by CreatedDate DESC

任何想法如何才能在没有时间的情况下获得不同的日期。现在它不能随着时间的推移而区分。

谢谢

I'm trying to select Distinct DateTime field in HQL.

select distinct CreatedDate from ClaimFile order by CreatedDate DESC

Any Idea how can I get distinct dates without time. right now it can't be distinct with time.

Thanks

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

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

发布评论

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

评论(1

丢了幸福的猪 2024-12-14 11:14:12

我只能想到几个选项:

  1. 用您的方言注册一个 CustomSQLFunction 并使用它来格式化
    将日期时间转换为日期。
  2. 创建一个计算列(sql server),它只是去掉时间。将其作为只读添加到映射中并使用它。
  3. 只需退回到普通 SQL,因为您似乎只需要日期列表而不是对象。
  4. 属性映射中使用公式属性映射元素说明

I can only think of a couple of options:

  1. Register a CustomSQLFunction in your dialect and use that to format
    the DateTime into a Date.
  2. Create a ComputedColumn (sql server) which just strips off the Time. Add it to the mapping as a read only and use that.
  3. Just fall back to plain SQL since you only seem to need a list of Dates and not objects.
  4. Use a formula in a property mapping. Property Mapping Element Explained
    <property name="CreateDate" formula="cast(convert(varchar(10),CreateDate,103) as datetime)" />.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文