sqlserver集合操作

SQLServer2005通过intersect,union,except和三个关键字对应交、并、差三种集合运算

详细如下

use tempdb
go
if (object_id ('t1' ) is not null ) drop table t1
if (object_id ('t2' ) is not null ) drop table t2
go
create table t1 (a int
)
insert into t1 select 1 union select 2 union select 3
create table t2
(a int )
insert into t2 select 3 union select 4 union select 5
go

--求表并集
select * from t1 union select * from t2
go 

--求表并集不过滤重复
select * from t1 union all select * from t2
go

/*
1
2
3
3
4
5*/

 

--求t1对t2的差集
select * from t1
except select * from t2
go
/*
1
2*/

 

--求t1对t2的交集
select * from
t1 intersect select * from t2
go
/*

转载于:https://www.cnblogs.com/theonewu/p/3343033.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值