mirror of https://github.com/go-gorm/gorm.git
Add basic support for multiple HAVING clauses. All clauses will be ANDed together.
This commit is contained in:
parent
82d726bbfd
commit
a9cdf1dc7f
|
@ -265,10 +265,24 @@ func (scope *Scope) groupSql() string {
|
|||
}
|
||||
|
||||
func (scope *Scope) havingSql() string {
|
||||
if scope.Search.havingCondition == nil {
|
||||
if scope.Search.havingConditions == nil {
|
||||
return ""
|
||||
}
|
||||
return " HAVING " + scope.buildWhereCondition(scope.Search.havingCondition)
|
||||
|
||||
var andConditions []string
|
||||
|
||||
for _, clause := range scope.Search.havingConditions {
|
||||
if sql := scope.buildWhereCondition(clause); sql != "" {
|
||||
andConditions = append(andConditions, sql)
|
||||
}
|
||||
}
|
||||
|
||||
combinedSql := strings.Join(andConditions, " AND ")
|
||||
if len(combinedSql) == 0 {
|
||||
return ""
|
||||
}
|
||||
|
||||
return " HAVING " + combinedSql
|
||||
}
|
||||
|
||||
func (scope *Scope) joinsSql() string {
|
||||
|
|
|
@ -7,7 +7,7 @@ type search struct {
|
|||
whereConditions []map[string]interface{}
|
||||
orConditions []map[string]interface{}
|
||||
notConditions []map[string]interface{}
|
||||
havingCondition map[string]interface{}
|
||||
havingConditions []map[string]interface{}
|
||||
initAttrs []interface{}
|
||||
assignAttrs []interface{}
|
||||
selects map[string]interface{}
|
||||
|
@ -93,7 +93,7 @@ func (s *search) Group(query string) *search {
|
|||
}
|
||||
|
||||
func (s *search) Having(query string, values ...interface{}) *search {
|
||||
s.havingCondition = map[string]interface{}{"query": query, "args": values}
|
||||
s.havingConditions = append(s.havingConditions, map[string]interface{}{"query": query, "args": values})
|
||||
return s
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue