返回 MySQL 连接上的所有项目,而不仅仅是匹配的项目
结帐
| item_id | user_id |
项目
| item_id |
我想要一个查询,该查询将返回所有项目,其中包含一个列,如果该列存在于特定 user_id 的结帐中,则返回 1。否则,它将返回 0。
select *
from checkouts
right join items on items.item_id = checkouts.item_id
where checkouts.user_id = 10
问题是它仅返回其连接的项目,而不是所有项目。
有什么想法吗?
checkouts
| item_id | user_id |
items
| item_id |
I want a query that will return ALL THE ITEMS with a column that if it exists in checkouts for a particular user_id, it returns a 1. Otherwise it will return a 0.
select *
from checkouts
right join items on items.item_id = checkouts.item_id
where checkouts.user_id = 10
The problem is that it only returns items that it joins on, not ALL the items.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
怎么样...
What about...
尝试
左外连接
:或者您也可以使用:
Try a
left outer join
:Alternatively you can also use:
尝试
右外连接
,例如try a
right outer join
, e.g.