mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 12:20:54 +00:00
Add GroupBy to QuerySeter
This commit is contained in:
parent
089242eda0
commit
bb50383aa9
@ -148,6 +148,10 @@ type QuerySeter interface {
|
||||
// add OFFSET value
|
||||
// same as Limit function's args[0]
|
||||
Offset(offset interface{}) QuerySeter
|
||||
// add GROUP BY expression
|
||||
// for example:
|
||||
// qs.GroupBy("id")
|
||||
GroupBy(exprs ...string) QuerySeter
|
||||
// add ORDER expression.
|
||||
// "column" means ASC, "-column" means DESC.
|
||||
// for example:
|
||||
|
Loading…
Reference in New Issue
Block a user