我在我的hibernate創建條件查詢中對數字字段求和。我需要另一列 - 從輸出resultlist域類seriesType
,但現在如果我添加術語property('seriesType')
中的突起隨着grouProperty()行我得到一個異常說not a group by clause could not execute query
在grails中使用HibernateCriteriaBuilder從createCriteria中提取所有字段
不知道我怎樣才能得到這裏與結果 其他兩個沿着場是我的標準
dataMap = BehaviorProfile.createCriteria().list {
globalUser{
eq('id',empid2)
}
projections{
sum('frequency', 'tfreq')
groupProperty('dayofweek')
// if I add property('seriesType') here the criteria throws an exception
}
}