我有两个相似的表,并希望通过一个查询从两个表中给出一个结果,结果类似于一个表(行作为串联并随时间排序)
我的表 1:
time name Comment
-------------------------
45 asd testasd
49 gas testgas
50 has testhas
96 bag testbag
我的表 2:
time name Comment
-------------------------
48 hjasf bigasd
54 adg biggas
65 zxx bighas
115 cxx bobbag
131 xxb bobhas
结果:
time name Comment
-------------------------
45 asd testasd
48 hjasf bigasd
49 gas testgas
50 has testhas
54 adg biggas
65 zxx bighas
96 bag testbag
115 cxx bobbag
131 xxb bobhas
我尝试这样做但不知道,我必须使用 JOIN 或 UNION 或...?