我正在尝试在HQL中选择Distinct DateTime字段。
select distinct CreatedDate from ClaimFile order by CreatedDate DESC
任何想法如何在没有时间的情况下获得不同的日期。现在它不能与时间截然不同。
由于
答案 0 :(得分:0)
我只能想到几个选项:
CustomSQLFunction
并使用该格式进行格式化
日期时间到日期。formula
映射中使用property
。 Property Mapping Element Explained
<property name="CreateDate" formula="cast(convert(varchar(10),CreateDate,103) as datetime)" />
。