接触到了几次union、union all,又一次挖坑了,总结一下两者的使用和区别: 1.union去重 2.union自动排序 3.因为union去重,故效率不如union all。若没有重复数据且不要求排序,可以用union all
实例: 1.
select id from test1 where id>5 and id<10
union
select id from test1 where id<8;
结果:
select id from test1 where id>5 and id<10
union all
select id from test1 where id<8;
结果:
原文链接:https://www.f2er.com/oracle/208702.html