Grails group by date

grails, grails-orm

Solution

Add a formula based field to your domain class for the truncated date:

class Transaction {
    LocalTime time
    BigDecimal amount
    String timeMonth

    static mapping = {
        timeMonth formula: "FORMATDATETIME(time, 'yyyy-MM')" // h2 sql
        //timeMonth formula: "DATE_FORMAT(time, '%Y-%m')"   // mysql sql
    }
}

Then you'll be able to run queries like this:

Transaction.withCriteria {
    projections {
        sum('amount')
        groupProperty('timeMonth')
    }
}

Problem

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.

Original source

Related problems