如何在一个查询中的不同行上左连接同一表
我需要修复以下查询:
SELECT *
FROM message_treads
LEFT JOIN usernames ON usernames.uid=message_treads.uid_1
LEFT JOIN usernames ON usernames.uid=message_treads.uid_2
我知道我应该使用别名,但我不确定如何在这里执行此操作。我知道当一张表只有一个左连接时该怎么做,但是当有多个表时该怎么做呢?
I need to fix following query:
SELECT *
FROM message_treads
LEFT JOIN usernames ON usernames.uid=message_treads.uid_1
LEFT JOIN usernames ON usernames.uid=message_treads.uid_2
I know i should use aliases, but i am not sure on how to do it here. I know how to do it when there is only one left join of one table, but how to to it when there are more than one?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以这样做:
至于别名,您可以这样做:
但这可能不是您想要的,因为这将从双倍用户名表中返回两组列。上面的第一个版本将仅返回一组用户名列。
You can do this:
As for aliasing, you'd do it like this:
But that's probably not what you want, as this'll return two sets of columns from the doubled-up usernames tables. The first version above will return only one set of username columns.
你是对的,你需要使用别名,如下所示:
You are correct, you need to use aliases like so: