作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
ID|user_id |book_id |author
1 |8 |7 |bill
2 |8 |6 |sally
3 |3 |7 |rob
4 |3 |4 |sarah
5 |3 |6 |jane
6 |8 |7 |frank
$check = DB::table('table as u1')
->join('table as u2','u1.book_id', '=', 'u2.book_id')
->where('u2.user_id', 8)->where('u1.user_id', 3)
->get();
最佳答案
你有两个选择。您可以使用 distinct()
或 groupBy()
变体 1:
$check = DB::table('table as u1')
->join('table as u2','u1.book_id', '=', 'u2.book_id')
->where('u2.user_id', 8)->where('u1.user_id', 3)
->distinct()
->get();
$check = DB::table('table as u1')
->join('table as u2','u1.book_id', '=', 'u2.book_id')
->where('u2.user_id', 8)->where('u1.user_id', 3)
->groupBy('u1.book_id')
->get();
关于sql - 如何在 Laravel 中进行 self 连接,从而产生不同的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30587027/
我是一名优秀的程序员,十分优秀!