0

我有一个域类:

class A{
    String abc
    String def
    Date dateDestruction
}

我想编写一个 namedQuery 或一个闭包,使我能够根据给定的月份和年份检索 A 的各种对象的计数。我想以以下格式显示对象:

Feb 2011    Object 1
            Object 2
March 2011  Object 3
            Object 4
            Object 5

关于如何实现这一点的任何想法?

4

1 回答 1

0

尝试使用 HQL,类似于以下内容:

A.executeQuery("select * from A a " +
                 "where month(a.dateDestruction) = ? and year(a.dateDestruction) = ?",
                 [/* month */, /* year */])
于 2012-06-25T01:44:06.473 回答