过滤更新项[SQL]

时间:2016-09-07 06:47:29

标签: sql sqlite

我试图更新2000年之前发布的所有项目的损失费用。

  public function getscreen($id)
{
    $screens=Movies_screen::where('cinema_id',$id)->get();
    return response()->json($screens);
}

我尝试过但不对,在更新内容时如何过滤? 感谢

2 个答案:

答案 0 :(得分:2)

update Item
set LostFee = (LostFee)*1.10;
where PubYear < 2000

WHERE子句在SET

之后出现

答案 1 :(得分:1)

按如下所示写下您的查询:

update Item
set LostFee = (LostFee)*1.10 where PubYear < 2000;