如何在laravel 5中具有多个条件的地方编写查询

时间:2016-06-02 14:34:05

标签: sql laravel-5.2 multiple-conditions

我正在尝试更新表格。

我在foreach中拥有所有价值观。唯一ID是'uuid'

但我想更新是否只更改了值。我试着这样做但没有运气。

$results = DB::table('urls')
                    ->where('uuid','=',$uuid)
                    ->orWhere('id_media', '!=',$id_media)
                    ->orWhere('region', '!=',$region)
                    ->orWhere('page', '!=',$page)
                    ->orWhere('audience', '!=',$audience)
                    ->update(array(
                        'id_media' => $id_media,
                        'region'=>$region,
                        'page'=>$page,
                        'audience'=>$audience
                    ));

以下查询的laravel方式。

update my_table set
my_col = 'newValue'
where id = 'someKey'
and my_col != 'newValue';

1 个答案:

答案 0 :(得分:1)

试试这个。 在https://laravel.com/docs/5.2/queries#updates中找到更多信息。

DB::table('my_table')
    ->where('id', 1)
    ->where('my_col', '!=', 'newValue')
    ->update(['my_col' => 'newValue']);

在您的特定情况下,您应该使用此:

DB::table('urls')
        ->where('uuid', '=', $uuid)
        ->where(function ($query) use ($id_media, $region, $page, $audience) {
            $query->orWhere('id_media', '!=', $id_media)
                ->orWhere('region', '!=', $region)
                ->orWhere('page', '!=', $page)
                ->orWhere('audience', '!=', $audience);
        })
        ->update([
            'id_media' => $id_media,
            'region' => $region,
            'page' => $page,
            'audience' => $audience
        ]);

最后一个会产生这样的东西:

update my_table set
    my_col = 'newValue'
where id = 'someId' and 
    (my_col1 != 'newValue1' or my_col2 != 'newValue2' or .. );