HQL 中没有时间的不同日期时间字段
我正在尝试在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我只能想到几个选项:
CustomSQLFunction
并使用它来格式化将日期时间转换为日期。
属性
映射中使用公式
。 属性映射元素说明
。I can only think of a couple of options:
CustomSQLFunction
in your dialect and use that to formatthe DateTime into a Date.
formula
in aproperty
mapping. Property Mapping Element Explained<property name="CreateDate" formula="cast(convert(varchar(10),CreateDate,103) as datetime)" />
.