连接给出两行而不是一行

发布于 2024-11-10 03:15:31 字数 658 浏览 4 评论 0原文

我有这样的连接:

select first_name, last_name, photo_path, private_messages, mid_thumb, 
bio_blurb, user_email 
from users 
left join member_photo on users.user_id = member_photo.photo_member_id 
left join user_email_options on users.user_id = user_email_options.email_user_id 
where user_id = 2

出于某种原因,它给出了两行,而不是我期望的用户信息的 1 行。我有什么明显遗漏的东西吗?我以前做过很多左连接,但似乎从未遇到过这种情况。为什么我会在结果集中得到 2 项?

例如,页面上发生的情况如下:

http://www.comehike.com /community/hiker_public_profile.php?community_member_id=2

请参阅 - 两条记录。

I have this join:

select first_name, last_name, photo_path, private_messages, mid_thumb, 
bio_blurb, user_email 
from users 
left join member_photo on users.user_id = member_photo.photo_member_id 
left join user_email_options on users.user_id = user_email_options.email_user_id 
where user_id = 2

For some reason, it gives two rows instead of 1 row that I expected with the users information. Is there anything obvious that I am missing? I have done a bunch of left joins before and never seem to have encountered this. Why would I get 2 items in the result set?

Here is what happens on the page for example:

http://www.comehike.com/community/hiker_public_profile.php?community_member_id=2

See - two records.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沦落红尘 2024-11-17 03:15:31

听起来 member_photouser_email_options 有不止一行对应于 user_id 2

Sounds like member_photo or user_email_options has more than one row corresponding to user_id 2

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文