laravel DB 更新语句
                use Illuminate\Support\Facades\DB;
DB::table('users')->where('id', 1)->update(['name' => '新名字', 'email' => 'newemail@example.com']);
                                        最近访问时间:2025-11-04 07:55:34
                                         
 
 
 
 
 
 
 
  
                use Illuminate\Support\Facades\DB;
DB::table('users')->where('id', 1)->update(['name' => '新名字', 'email' => 'newemail@example.com']);