码迷,mamicode.com
首页 > 其他好文 > 详细

UNION / UNION ALL 区别

时间:2016-11-13 01:36:24      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:bsp   blog   win   使用   技术分享   alt   rom   sam   rod   

Union:对两个结果集进行并集操作,不包括重复行,同时进行默认规则的排序;

Union All:对两个结果集进行并集操作,包括重复行,不进行排序;

使用union all:

select top 5 OrderID,[EmployeeID] from dbo.Orders where EmployeeID=1
union all
select top 5 OrderID,[ProductID] from [Order Details] where ProductID=1

  

 技术分享

 

使用union:

select top 5 OrderID,[EmployeeID] from dbo.Orders where EmployeeID=1
union
select top 5 OrderID,[ProductID] from [Order Details] where ProductID=1

  

技术分享

 

附下微软示例数据库连接:NORTHWIND下载

 

UNION / UNION ALL 区别

标签:bsp   blog   win   使用   技术分享   alt   rom   sam   rod   

原文地址:http://www.cnblogs.com/jiangtu/p/6057894.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!