Laravel多个WHERE子句

时间:2017-04-29 07:44:29

标签: php laravel laravel-5 eloquent laravel-5.4

我需要在Laravel SQL查询中添加多个where子句。

到目前为止,我的PHP代码已经:

date_default_timezone_set('America/Los_Angeles');

$today = getdate();
$year = $today['year'];
$month = $today['mon'];
$day = $today['mday'];

$today_ = $day.'-'.$month.'-'.$year;
$result = DB::table('task')
    ->select('*')
    ->where(
        ['rowstate', '<>', 'Ready'],
        ['DATE_FORMAT(due_date, "%d-%m-%y")', '<', $today_])
    ->get();

但是上面的代码返回:

Column not found: 1054 Unknown column '0' in 'where clause' 
(SQL: select * from `task_tab` where (`0` = rowstate and `1` = <> and `2` = Ready))

我想生成以下SQl语句:

SELET * 
FROM task
WHERE rowstate <> 'Ready'
AND DATE_FORMAT(due_date, "%d-%m-%y") < $today

3 个答案:

答案 0 :(得分:5)

您有两种可能的解决方案。

而不是:

->where(['rowstate', '<>', 'Ready'], ['DATE_FORMAT(due_date, "%d-%m-%y")', '<', $today_])

你可以使用

->where('rowstate','<>','Ready')->where(DB::raw('DATE_FORMAT(due_date, "%d-%m-%y"','<', $today_);

你可以使用这样的数组语法:

->where([
    ['rowstate', '<>', 'Ready'], 
    [DB::raw('DATE_FORMAT(due_date, "%d-%m-%y")'), '<', $today_]
 ]);

总而言之,您错过了将数据封装到外部数组中,如果不使用原始列名,则需要使用DB::raw

答案 1 :(得分:0)

你不能直接在laravel中使用sql函数。您需要DB::raw()使用相同的内容。

所以你的查询将是:

$result = DB::table('task')
    ->select('*')
    ->where('rowstate', '<>', 'Ready')
    ->where(DB::raw('DATE_FORMAT(due_date, "%d-%m-%y")'), '<', $today_)
    ->get();

答案 2 :(得分:0)

试试这个

->where([
//      ^
    ['rowstate', '<>', 'Ready'],
    ['DATE_FORMAT(due_date, "%d-%m-%y")', '<', $today_]])
//                                                     ^