Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
I don't know any GORM specific functions but if its ok for you - you could use database specific functions. I've used GROUP BY MONTH(time) for MySQL so far. – aiolos May 4 '12 at 21:46

1 Answer

up vote 8 down vote accepted

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')
    }
}
share|improve this answer
Thanks for answer, this was a really neat way of solving it. – Odinodin May 6 '12 at 20:53
Attention: When using CamelCase for domain properties you have to use underscore for the field name in sql syntax. e.g. datePhotoTaken will result in date_photo_taken – skurt Mar 19 at 12:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.