79

我需要更新数据库中的所有行,以便所有行中的特定字段等于单个值。这是一个例子。

假设我的数据库表是这样的:

ID 数据 确认的
1 一些数据 0
2 一些数据 1
3 一些数据 0

我想执行一个查询,将每一行的已确认字段设置为 1。

我可以这样做:

$rows = MyModel::where('confirmed', '=', '0')->get();
foreach($rows as $row) {
    $row->confirmed = 0;
    $row->save();
}

但似乎有更好的方法?一个查询只会说“将每一行的‘确认’字段设置为 1”。

Laravel 的 Eloquent/Fluent 中是否存在这样的查询?

4

8 回答 8

144

为了让这个线程保持最新,你可以直接使用 Eloquent 模型更新所有行:

Model::query()->update(['confirmed' => 1]);
于 2016-09-14T15:11:15.997 回答
97

好吧,一个简单的答案:不,你不能用雄辩的。一个模型代表数据库中的 1 行,如果他们实现它就没有意义。

但是,有一种方法可以使用 fluent 来做到这一点:

$affected = DB::table('table')->update(array('confirmed' => 1));

甚至更好

$affected = DB::table('table')->where('confirmed', '=', 0)->update(array('confirmed' => 1));
于 2013-03-26T13:24:20.973 回答
24

你可以用 elquent (laravel 4) 做到这一点:

MyModel::where('confirmed', '=', 0)->update(['confirmed' => 1])
于 2015-03-24T08:51:34.283 回答
1

更新任何列文件

DB::table('your_table_name')->update(['any_column_name' => 'any value']);
于 2021-12-20T17:25:23.517 回答
1

更新所有行的解决方案:

  1. 创建一个额外的列(如'updateAll')并为mysql表中的所有行(如'updateAll' = '1')分配静态值。

  2. 添加带有 name="forUpdateAll" 和 value="forUpdateAllValue" 的隐藏输入字段(仅执行特定代码以更新所有行)

  3. 然后为 update(Request $request, $id) 方法添加以下代码:
public function update(Request $request, $id){
      if($request->get('forUpdateAll') == "forUpdateAllValue"){
                 $question = \App\YourModel::where('updateAll',$id)
                     ->update([
                         'confirmed' => 1
                     ]);

      }else {
          //other code ( update for unique record ) 
      }
 }
  1. 像这样设置您的表单:
<form role="form" action="/examples/1" method="post">        
      {{ method_field('PATCH') }}
      {{ csrf_field()}}
      <input type="hidden" name="forUpdateAll" value="forUpdateAllValue">  
      <button type="submit" class="btn btn-primary">Submit</button>
  </form>
于 2020-06-07T05:07:50.613 回答
0

这对我有用:

   MyModel::query()->update(  ['confirmed' => 1] );
于 2021-12-29T08:47:09.407 回答
0

模型::where('confirmed', 0)->update(['confirmed' => 1])

于 2021-10-14T09:13:15.390 回答
-8

您可以这样做来更新所有记录。

App\User::where('id', 'like', '%')->update(['confirmed' => 'string']);

于 2018-06-12T06:19:28.193 回答