更新某个区间值呢?例如1002<id<1005
$res = DB::table('student')->whereRaw('id > ? and id < ?',['1002','1005'])->update(['age' => 30]); 我猜测的啊