繁体   English   中英

错误:违反完整性约束:加入 Laravel Eloquent 时出现 1052

[英]Error: Integrity constraint violation: 1052 when Join in Laravel Eloquent

我试图通过指定它们的关系(即外键和本地键)并使用 find(id) 将两个表连接在一起。 从头开始,我使用了 where 和 get()。 它没有给出同样的错误然后我注释掉了 where 子句以使用 find($id)

"SQLSTATE[23000]: Integrity constraint violation: 1052 Column 'id' in where clause is ambiguous (SQL: select `votes`.`flavour`, `users`.`email` from `votes` inner join `users` on `votes`.`user_id` = `users`.`id` and `id` = 1 limit 1)",

这是基于选择显示的函数 public function show($id) {

         $dbconnect = DB::table('votes')
         ->join('users', 'votes.user_id', '=', 'users.id')
         //->where('votes.id', $id)
         ->select('votes.id','votes.date_of_birth','votes.voter_ip','votes.flavour', 'users.email')
         ->find($id);
         $vote = auth()->user()->$dbconnect;
        if (!$vote) {
            return response()->json([
                'success' => false,
                'message' => 'Vote with id ' . $id . ' not found'
            ], 400);
        }

        return response()->json([
            'success' => true,
            'data' => $vote->toArray()
        ], 400);
    }

全部显示:在这个函数中,我也应该使用 join,但我只使用了它准确显示的投票表 我需要在 votes.user_id = users.id 上加入投票和用户表

public function index()
        {
            $votes = auth()->user()->votes;

            return response()->json([
                'success' => true,
                'data' => $votes
            ]);
        }

谢谢

这是因为您正在使用->find($id)函数。 此函数将查找模型的主键(在本例中为id )并将其用作过滤器。 但是,由于join,这个字段是有歧义的。

要解决此问题,您可以手动添加过滤器:

$dbconnect = DB::table('votes')
     ->join('users', 'votes.user_id', '=', 'users.id')
     ->select('votes.id','votes.date_of_birth','votes.voter_ip','votes.flavour', 'users.email')
     ->where('votes.id', $id)
     ->first();

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM