mirror of
https://github.com/gogf/gf.git
synced 2025-04-05 11:18:50 +08:00
10 lines
132 B
Go
10 lines
132 B
Go
package main
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
)
|
|
|
|
func main() {
|
|
g.DB().Model("user").Distinct().CountColumn("uid,name")
|
|
}
|