dope2008 7年前 $category = Categorys::find(1); $category->title = 'abc'; $category->save(); $category = Categorys::where('id',1)->update(['title'=>'abc']); 第一种,是不是先查询出来,然后update 是二条SQL第二种方法是不是更好呢??