gpt4 book ai didi

mysql - 比较两个相同表中的列的主键并返回 MySQL 中不匹配的行

转载 作者:行者123 更新时间:2023-11-29 10:31:46 25 4
gpt4 key购买 nike

Table1
id | Ans1| Ans2
1 |yes | no
2 | no| yes
3 | no| no

Table2
id | Ans1| Ans2
1 |yes | no
2 | yes| no
3 | no| yes

有没有一种方法可以让我只返回不匹配的行。在此示例中,我希望返回除第一行之外的最后两行。

最佳答案

您可以通过表的 JOIN 来实现此目的。您的查询可能如下所示(您可以使用其他类型的联接来实现此结果

select t1.*, t2.*
from Table1 t1
inner join Table2 t2 ON t1.id = t2.id and (t1.Ans1 <> t2.Ans1 OR t1.Ans2 <> t2.Ans2)

希望这有帮助

关于mysql - 比较两个相同表中的列的主键并返回 MySQL 中不匹配的行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47263278/

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