MYSQL QUERY从两个表中选择

时间:2015-02-24 11:42:14

标签: mysql

我有桌面收件箱和桌面发件箱。 我希望按日期排序。

表格:收件箱
enter image description here

表格:发件箱
enter image description here

我想要QUERY和这样的结果
enter image description here

感谢

1 个答案:

答案 0 :(得分:1)

您正在寻找union allorder by

select SenderNumber as Number, TextDecoded, date
from inbox
union all
select DestinationNumber, TextDecoded, date
from outbox
order by date;