根据年月比较两个日期,不注意日期



我需要能够比较两个日期,仅基于年份和月份(即不注意日期),以及JAVA和HQL中的日期。

假设我需要检查d1是否小于或等于 d2 .这是我尝试过的:

.JAVA

calendar.setTime(d1);
int y1 = calendar.get(Calendar.YEAR);
int m1 = calendar.get(Calendar.MONTH);
calendar.setTime(d2);
int y2 = calendar.get(Calendar.YEAR);
int m2 = calendar.get(Calendar.MONTH);
return y1 <= y2 && m1 <= m2;

总部

select item from Item item
where year(item.d1) <= year(:d2)
and month(item.d1) <= month(:d2)

上面的两段代码中的算法是相同的,但它是错误的:

  • 2011-10 LTE 2012-09应该返回true但会返回false,因为2011 < 201210 !< 09

如果我使用OR而不是AND,它仍然是错误的:

  • 2013-01 LTE 2012-05应该返回false但会返回true,因为2013 !< 201201 < 05

那么,我应该如何处理呢?拜托,我需要它用于JAVA和HQL。

这应该有效。

select item from Item item
where year(item.d1) < year(:d2) or
     (year(item.d1) = year(:d2)
      and month(item.d1) <= month(:d2))

Java也是如此:

y1 < y2 || (y1 == y2 && m1 <= m2)

您可以将第二次检查保留为y1 <= y2但这有点多余。

相关内容

  • 没有找到相关文章

最新更新