1

我不知道如何在 laravel eloquent orm 中同时使用更新和限制方法。

$affectedRows = Promo::where('used','=',0)
    ->update(array('user_id' => Auth::user()->id))
    ->limit(1); // Call to a member function limit() on a non-object
    //->take(1); // Call to a member function take() on a non-object

我尝试了 limit 和 take 方法。

我只想更新一个结果。

但我认为,我不能在更新时使用限制或采取方法。

有没有办法通过 eloquent 只更新一行?


添加 :

雄辩的 ORM

$affectedRows = Promo::where('user_id','=',DB::raw('null'))->take(1)
        ->update(
            array(
                'user_id'       => Auth::user()->id,
                'created_ip'    =>Request::getClientIp(),
                'created_at'    => new DateTime,
                'updated_at'    => new DateTime
            )
        );

查询生成器

$affectedRows = DB::table('promos')->whereNull('user_id')
    ->take(1)
    ->update(array(
        'user_id'       => Auth::user()->id,
        'created_ip'    =>Request::getClientIp(),
        'created_at'    => new DateTime,
        'updated_at'    => new DateTime
    ));

这两个代码没有在查询中添加限制参数

输出:

update `promos` set `user_id` = '1', `created_ip` = '127.0.0.1', `created_at` = '2013-06-04 14:09:53', `updated_at` = '2013-06-04 14:09:53' where `user_id` = null
4

3 回答 3

6

谈论 laravel 5(不确定 L4),取决于 db 引擎。MySQL 支持更新限制,因此它可以工作,这是执行此操作的 laravel 代码:

https://github.com/laravel/framework/blob/5.4/src/Illuminate/Database/Query/Grammars/MySqlGrammar.php#L129

所以,首先 ->limit(1) 然后 ->update([fields]);

DB::table('table')
    ->where('field', 'value')
    ->limit(1)
    ->update(['field', 'new value']);
于 2017-04-18T10:42:38.440 回答
4

我使用原始查询。eloquent 和查询构建器上的更新和删除查询没有方法限制/采用。采用

DB::update(DB::raw("UPDATE query"));

像这样。

于 2013-06-04T18:59:40.323 回答
2

我没有尝试过,但 Laravel 4 的逻辑让我认为这种语法会起作用:

$affectedRows = Promo::where('used','=',0)
    ->limit(1)
    ->update(array('user_id' => Auth::user()->id));
于 2013-06-04T13:50:27.617 回答