Laravel Eloquent:违反完整性约束:1052 列“id”在 where 子句不明确
Posted
技术标签:
【中文标题】Laravel Eloquent:违反完整性约束:1052 列“id”在 where 子句不明确【英文标题】:Laravel Eloquent: Integrity constraint violation: 1052 Column 'id' in where clause is ambiguous 【发布时间】:2019-10-03 12:22:42 【问题描述】:我正在建立一个网站,其中许多成员可以加入许多组。
//User.php
public function groups()
return $this->belongsToMany(Group::class, 'group_member', 'member_id', 'group_id');
从组id中检索相关成员的函数
//UserRepository.php
public function getRelatedMembersByGroupIds(array $groupIds)
$members = User::whereHas('groups', function ($query) use ($groupIds)
return $query->whereIn('groups.id', $groupIds);
);
return $members->get();
正在从 UserController 调用存储库
//UserController.php
public function getRelatedMembersByGroupIds(Request $request)
$groupIds = $request->get('group_ids');
$members = $this->userRepository->getRelatedMembersByGroupIds($groupIds);
$responses = [
'status' => 'success',
'groupRelatedMembers' => $members
];
return response()->json($responses);
返回
SQLSTATE[23000]:违反完整性约束:1052 列 'id' 在 where 子句不明确(SQL:select users.* from users where exists (select * from groups inner join group_member on groups.id = group_member.group_id 其中 users.id = group_member.member_id 和 (1) 中的 groups.id 和 groups.deleted_at 为 null 并且 id = 1))
【问题讨论】:
提示:and id = 1
你遗漏了部分代码,where('id', 1) some where
添加了代码。
1 是请求中的 group_id。
whereIn('groups.id', $groupIds)
通常不是必需的,whereIn('id', $groupIds)
应该可以工作并且可能允许创建表别名(虽然不是 100% 确定)
【参考方案1】:
在最后一个 where 子句中,有“id=1”。您需要将其表示为“table_name.id=1”。
【讨论】:
嘿伙计,这不是问题 它说的模棱两可,因为用户表和组表有 id 列【参考方案2】:我不确定,但它可能会起作用
你的代码
public function getRelatedMembersByGroupIds(array $groupIds)
$members = User::whereHas('groups', function ($query) use ($groupIds)
return $query->whereIn('groups.id', $groupIds);
);
return $members->get();
你能dd($members)
并分享结果,以便我深入研究这个问题
【讨论】:
谢谢。 id = 1 来自我在 GroupScope 上实现的 auth()->user()->branch_id。【参考方案3】:我忘记了我已经为 Group 模型实现了全局范围。在 GroupScope 中添加 groups.id 后,效果很好。
<?php
namespace App\Scopes;
use App\Helpers\AuthenticationHelper;
use Illuminate\Database\Eloquent\Scope;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Builder;
class GroupScope implements Scope
/**
* Apply the scope to a given Eloquent query builder.
*
* @param \Illuminate\Database\Eloquent\Builder $builder
* @param \Illuminate\Database\Eloquent\Model $model
* @return void
*/
public function apply(Builder $builder, Model $model)
if (AuthenticationHelper::isEmployee())
//Problem was I did not added groups table below.
$builder->where('groups.id', auth()->user()->branch_id);
【讨论】:
我建议删除这个无用的问题,然后 正要删除,得到“你不能删除这个问题,因为其他人已经投入了时间和精力来回答它。” 那么一切都很好:-) 我遇到了同样的问题,是由确切的错误引起的,所以感谢您将这个答案发布到您自己的问题中。【参考方案4】:在我的情况下,这是由于多租户 TenantScope
范围。
解决方法是在字段前面加上表名——在我的例子中是通用的——因为范围适用于所有模型。
我的解决方案是使用$model->getTable()
,如下所示:
<?php
namespace App\Scopes;
use App\Helpers\AuthenticationHelper;
use Illuminate\Database\Eloquent\Scope;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Builder;
class GroupScope implements Scope
/**
* Apply the scope to a given Eloquent query builder.
*
* @param \Illuminate\Database\Eloquent\Builder $builder
* @param \Illuminate\Database\Eloquent\Model $model
* @return void
*/
public function apply(Builder $builder, Model $model)
if (AuthenticationHelper::isEmployee())
//Problem was I did not added groups table below.
$builder->where($model->getTable() . '.id', auth()->user()->branch_id);
【讨论】:
以上是关于Laravel Eloquent:违反完整性约束:1052 列“id”在 where 子句不明确的主要内容,如果未能解决你的问题,请参考以下文章
laravel 8 播种,SQLSTATE[23000]:违反完整性约束:
Laravel 迁移 - 违反完整性约束:1452 无法添加或更新子行:外键约束失败