Laravel HasMany WhereNotIn Query

问题:我正在尝试查询人员类型以查找未关联人员的所有课程。

我有 4 张桌子

  1. 人员类型

  2. 课程

  3. People_Courses

  4. PeopleType_Courses

我有以下关系

人物模型

public function getPeopleType() {

  return $this->belongsTo('App\PeopleType','type_id');

}


public function getCourses() {

  return $this->belpngsToMany('App\Course','People_Courses','person_id','course_id');

}

PEOPLE_TYPE模型


public function getPeople() {

  return $this->hasMany('App\Person','type_id');

}


public function getCourses() {

  return $this->belpngsToMany('App\Course','PeopleType_Courses','people_type_id','course_id');

}

我的尝试:


$peopleType = \App\PeopleType::FindOrFail(1);

$courses = $peopleType->getCourses()->whereNotIn('id', function($q) use($person) {

                $q->select('course_id')

                  ->from('People_Courses')

                    ->where('person_id', $person->id);

           })->get();

我的回答:


完整性约束冲突:1052 IN/ALL/ANY 子查询中的列“id”不明确


人员课程表示意图


Schema::create('People_Courses', function (Blueprint $table) {

   $table->increments('id');

   $table->integer('course_id');

   $table->integer('person_id');

);

PeopleType_Courses表示意图


Schema::create('PeopleType_Courses', function (Blueprint $table) {

   $table->increments('id');

   $table->integer('course_id');

   $table->integer('people_type_id');

);


蛊毒传说
浏览 123回答 1
1回答

月关宝盒

在处理在查询中选择的具有相似列名的关系时,需要通过在列中指定表名来解决多义性。例如:$peopleType->getCourses()->whereNotIn('courses.id', function($q)...  //courses.id
打开App,查看更多内容
随时随地看视频慕课网APP