mirror of
https://gitee.com/johng/gf.git
synced 2024-12-04 13:18:01 +08:00
14 lines
206 B
Go
14 lines
206 B
Go
package main
|
||
|
||
import (
|
||
"github.com/gogf/gf/frame/g"
|
||
)
|
||
|
||
func main() {
|
||
db := g.DB()
|
||
// 开启调试模式,以便于记录所有执行的SQL
|
||
db.SetDebug(true)
|
||
|
||
db.Table("user").Delete("score < ", 60)
|
||
}
|