I have a domain class with a date-property.
class Transaction {
LocalDate time
BigDecimal amount
}
How can I query for the sum of all transactions grouped by month? I can“t find any support for group by a date-range in GORM.
|
Add a formula based field to your domain class for the truncated date:
Then you'll be able to run queries like this:
|
||||
GROUP BY MONTH(time)for MySQL so far. – aiolos May 4 '12 at 21:46