1
0
mirror of https://github.com/gogf/gf.git synced 2025-04-05 11:18:50 +08:00
gf/.example/database/gdb/mysql/gdb_distinct.go
2021-10-11 21:41:56 +08:00

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")
}