Grails group by date
问题 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. 回答1: 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-