gpt4 book ai didi

mysql 查看哪些数据不在另一个表中

转载 作者:行者123 更新时间:2023-11-29 17:44:04 25 4
gpt4 key购买 nike

这是我的 table

 table_datetime1
2018-03-01 00:05:00
2018-03-01 00:10:00
2018-03-01 00:15:00
2018-03-01 00:20:00
2018-03-01 00:25:00

table_datetime2

2018-03-01 00:05:00
2018-03-01 00:10:00
2018-03-01 00:15:00
2018-03-01 00:20:00
2018-03-01 00:30:00

在本例中,有 2 条记录不是,我想在查询中显示这 2 条记录

example
2018-03-01 00:25:00
2018-03-01 00:30:00

最佳答案

这应该给你两条记录:

select * from table1 a
left join table2 b on b.table_datetime2 = a.table_datetime1
where b.table_datetime2 is null
union
select * from table2 a
left join table1 b on b.table_datetime1 = a.table_datetime2
where b.table_datetime1 is null

关于mysql 查看哪些数据不在另一个表中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49884542/

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