I have a class with a status :
class A{
String status
}
This status can have values 'start','end','inprogress'.
I would like get the number of 'start','end' and 'inprogress' in one query.
I see this post : Different record count values in one query but It's only for Oracle.
Is it possible to do that in Grails/GORM ?
Thanks.