union、union all的用法和区别

前端之家收集整理的这篇文章主要介绍了union、union all的用法和区别前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

接触到了几次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

猜你在找的Oracle相关文章