博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SQL SERVER: 合并相关操作(Union,Except,Intersect)
阅读量:5302 次
发布时间:2019-06-14

本文共 835 字,大约阅读时间需要 2 分钟。

SQL SERVER: 合并相关操作(Union,Except,Intersect)

use tempdbcreate table tempTable1 (id int primary key identity, price int)create table tempTable2 (id int primary key identity, price int)insert into tempTable1 select 3 union all select 1 union all select 2 union all select 3 insert into tempTable2 select 3 union all select 4 union all select 1 union all select 2select * from temptable1select * from temptable2--union会删除重复值,也就是说A和B中重复的行,最终只会出现一次,而union all则会保留重复行。select * from temptable1unionselect * from temptable2select * from temptable1union allselect * from temptable2--差异(Except)--就是两个集中不重复的部分。例如SELECT * from temptable1exceptselect * from temptable2--交集(intersect)--就是两个集中共同的部分。例如select * from temptable1INTERSECTselect * from temptable2DROP TABLE temptable1DROP TABLE temptable2

 

转载于:https://www.cnblogs.com/davidhou/p/5073566.html

你可能感兴趣的文章
记事本代码
查看>>
Unity3D开发之NGUI点击事件穿透响应处理
查看>>
Unity 5.4 测试版本新特性---因吹丝停
查看>>
测试 Cmdmakerdown语法
查看>>
使用Scrapy爬虫框架简单爬取图片并保存本地(妹子图)
查看>>
LeetCode 189. Rotate Array (旋转数组)
查看>>
17.QT-事件处理分析、事件过滤器、拖放事件
查看>>
Python爬虫实战(二)
查看>>
linux 自学系列:更改密码、获取帮助
查看>>
windows 程序设计自学:窗口正中显示Hello,World
查看>>
7.5 文件操作
查看>>
六、强大的 Stream API
查看>>
Centos7 安装 Docker CE
查看>>
原生js实现懒加载并节流
查看>>
分布式配置hadoop2.5.0 2.6.x
查看>>
什么是列表推导式,生成器,迭代器?
查看>>
SQ3R方法
查看>>
ZOJ 3818 Pretty Poem 字符串
查看>>
Servlet分页查询
查看>>
myeclipse_JUnit导包问题
查看>>