Laravel - 使用“with”和“where”子句进行选择的查询

Posted

技术标签:

【中文标题】Laravel - 使用“with”和“where”子句进行选择的查询【英文标题】:Laravel - query to select with "with" and "where" clause 【发布时间】:2021-03-05 10:34:32 【问题描述】:

我有以下几点:

public function filterStudentsByDateOfInterview($interview_date)

    //return students with the day of interview:

     $students = Students::with('interviews')
         ->where('interviews.interview_date', $interview_date) //this returns me an error
         ->get();

    return $students;

我的问题如下: 我怎样才能在采访栏上发表where 声明?如果我不通过 where 语句,则有效。但我只需要获取日期等于函数参数的数据。

它返回给我的错误:

Unknown column 'interviews.interview_date' in 'where clause'

提前致谢!

【问题讨论】:

【参考方案1】:

你可以像这样传递回调函数

public function filterStudentsByDateOfInterview($interview_date)

    //return students with the day of interview:

     $students = Students::whereHas('interviews' ,function($query) use($interview_date)
        $query->where('interview_date', $interview_date);
     )->get();
         

    return $students;

【讨论】:

感谢您的回答!但是错误还是一样

以上是关于Laravel - 使用“with”和“where”子句进行选择的查询的主要内容,如果未能解决你的问题,请参考以下文章

使用“with”加入 laravel 并在连接表中设置 where 语句

laravel 使用with查询数据和 chunk分块的使用

Laravel Eloquent Where and or Where with Eager Load 无法正常工作

Laravel Eloquent Multiple Where with count

在 Laravel 5 中合并 'with' 和 'whereHas'

laravel with closure