mirror of
https://gitee.com/johng/gf
synced 2026-07-04 21:03:13 +08:00
13 lines
166 B
Go
13 lines
166 B
Go
package main
|
|
|
|
import (
|
|
"github.com/gogf/gf/frame/g"
|
|
)
|
|
|
|
func main() {
|
|
db := g.DB()
|
|
db.SetDebug(true)
|
|
|
|
db.Table("user").Data("num=num+1").Where("id", 8).Update()
|
|
}
|