这两个都是把查询结果合并起来,但是union是合并后删除重复行数据,而union all不删除。
如:
select * from A
union
select * from B

--
select * from A
union all
select * from B