如何为 ->whereMonth Laravel 使用数组?
How to use array for ->whereMonth Laravel?
是否可以使用数组作为函数 DB 的值:
->whereMonth($month);
像这样:->whereMonth([01, 02, 12]);
whereMonth 不支持数组,第一个参数是列名,不是值。
https://laravel.com/api/5.3/Illuminate/Database/Query/Builder.html#method_whereMonth
您可以将 whereIn 与原始表达式一起使用:
->whereIn(DB::raw('MONTH(column)'), [1,2,3])
是否可以使用数组作为函数 DB 的值:
->whereMonth($month);
像这样:->whereMonth([01, 02, 12]);
whereMonth 不支持数组,第一个参数是列名,不是值。
https://laravel.com/api/5.3/Illuminate/Database/Query/Builder.html#method_whereMonth
您可以将 whereIn 与原始表达式一起使用:
->whereIn(DB::raw('MONTH(column)'), [1,2,3])