UPDATE `mytabele` set `field1` = `field2`
就是怎么实现这种更新
<< 上一篇: 使用mysql函数查询时报错
>> 下一篇: laravel换一个Auth认证配置项
试试通过 DB::update(UPDATEmytabelesetfield1=field2),执行原生 SQL 原句
DB::update(UPDATE
set
=
)
像这样 ProductPhoto::where('photo_id',$photo->id)->update(['sort'=>$productSort]);
2 Comments
试试通过
DB::update(UPDATE
mytabeleset
field1=
field2)
,执行原生 SQL 原句像这样 ProductPhoto::where('photo_id',$photo->id)->update(['sort'=>$productSort]);