gpt4 book ai didi

sql - 合并两个表

转载 作者:行者123 更新时间:2023-12-05 01:08:41 25 4
gpt4 key购买 nike

假设这 3 个表:

船舶:

    ID                   
--------------------

1
2
3

到达:
 shipID     Atime 
--------------------
1 t1
1 t3

离开:
 shipID     Ltime
--------------------
1 t2
1 t4

我需要一个返回的查询:
  shipID   Atime   Ltime
------------------------------
1 t1 null
1 null t2
1 t3 null
1 null t4

其中 t1>t2>t3>t4

这个结果是可以接受的:
  shipID   Atime   Ltime
------------------------------
1 t1 null
1 t3 null
1 null t2
1 null t4

最佳答案

尝试:

SELECT shipID, atime, null ltime from arrive
UNION ALL
SELECT shipID, null atime, ltime from `leave`
order by coalesce(atime,ltime)

SQLFiddle here .

关于sql - 合并两个表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16789503/

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