thinkphp5中数据库字段更新如何自增

thinkphp5中数据库字段更新如何自增

有两种方法可以使用

```
Db::table('user')
->where('id', 1)
->update([
'login_times' => Db::raw('login_times+1'),
]);
```

```
Db::table('user')->where('id', 1)->setInc('score');
```

setInc/setDec如不加第二个参数,默认值为1

    A+
发布日期:2022年01月20日  所属分类:未分类

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: