gpt4 book ai didi

对同一表中的多个列进行 SQL 连接

转载 作者:行者123 更新时间:2023-12-03 04:38:50 24 4
gpt4 key购买 nike

我有 2 个子查询,但在将同一表中的列连接在一起时遇到问题。我尝试过:

SELECT * FROM

(SELECT userid, listid
FROM user_views_table
WHERE date='2013-05-15' AND view_type='lists') a

JOIN

(SELECT sourceid, destinationid
FROM actions_table
WHERE date='2013-05-15' AND payloadtype='lists_user' AND actiontype='delete') b

ON a.userid = b.sourceid
ON a.listid = b.destinationid;

如果我只是用 ON a.userid = b.sourceid 结束查询它有效,但我怎样才能将这些表也加入到另一列ON a.listid = b.destinationid ??

感谢任何帮助。

最佳答案

您需要将第二个 ON 替换为 AND,如下所示:

ON a.userid = b.sourceid AND a.listid = b.destinationid;

关于对同一表中的多个列进行 SQL 连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16597660/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com