如何在wheres数组中使用运算符

时间:2019-05-29 09:37:22

标签: laravel eloquent laravel-5.6

我正在尝试在其中wheres的数组中使用=>运算符 但是查询使用运算符作为绑定

Model::updateOrCreate([
        ['client_id', $client->id],
        ['created_at', '=>', '2019-05-01 00:00:00',],
    ],
    [
        'client_id' => $client->id,
    ]
);

这不起作用,查询看起来像这样

[
    "query"    =>
        "select * from `models` where (`client_id` = ? and `created_at` = ?) limit 1",
    "bindings" => [
        0 => 5,
        1 => "=>",
    ],
];

我在网上搜索,但找不到该功能的适当文档 addArrayOfWheres

谢谢。

1 个答案:

答案 0 :(得分:7)

=>不是条款的有效运算符,应使用>=

可以in the source code找到允许的运算符的完整列表。

/**
 * All of the available clause operators.
 *
 * @var array
 */
public $operators = [
    '=', '<', '>', '<=', '>=', '<>', '!=', '<=>',
    'like', 'like binary', 'not like', 'ilike',
    '&', '|', '^', '<<', '>>',
    'rlike', 'regexp', 'not regexp',
    '~', '~*', '!~', '!~*', 'similar to',
    'not similar to', 'not ilike', '~~*', '!~~*',
];