union和union all的區別
當前位置:點晴教程→知識管理交流
→『 技術文檔交流 』
一、區別1:取結果的并集 1、union: 對兩個結果集進行并集操作, 不包括重復行,相當于distinct, 同時進行默認規則的排序; 2、union all: 對兩個結果集進行并集操作, 包括重復行, 即所有的結果全部顯示, 不管是不是重復; 二、區別2:獲取結果后的操作 1、union: 會對獲取的結果進行排序操作 2、union all: 不會對獲取的結果進行排序操作 三、區別3: 1、union看到結果中ID=3的只有一條 select * from student2 where id < 4 union select * from student2 where id > 2 and id < 6 2、union all 結果中ID=3的結果有兩個 select * from student2 where id < 4 union all select * from student2 where id > 2 and id < 6 四、總結 union all只是合并查詢結果,并不會進行去重和排序操作,在沒有去重的前提下,使用union all的執行效率要比union高 ———————————————— 版權聲明:本文為CSDN博主「我心依依舊」的原創文章,遵循CC 4.0 BY-SA版權協議,轉載請附上原文出處鏈接及本聲明。 原文鏈接:https://blog.csdn.net/a200822146085/article/details/119545374 該文章在 2023/5/29 10:41:29 編輯過 |
關鍵字查詢
相關文章
正在查詢... |