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_value.go
2021-10-11 21:41:56 +08:00

16 lines
261 B
Go

package main
import (
"fmt"
"github.com/gogf/gf/v2/frame/g"
)
func main() {
one, err := g.Model("carlist c").
LeftJoin("cardetail d", "c.postid=d.carid").
Where("c.postid", "142039140032006").
Fields("c.*,d.*").One()
fmt.Println(err)
g.Dump(one)
}