Chinaunix首页 | 论坛 | 博客
  • 博客访问: 132067
  • 博文数量: 1
  • 博客积分: 1410
  • 博客等级: 上尉
  • 技术积分: 425
  • 用 户 组: 普通用户
  • 注册时间: 2007-03-28 13:05
文章分类

全部博文(1)

文章存档

2008年(1)

我的朋友
最近访客

分类: 数据库开发技术

2008-04-01 10:21:16

首先,建立两个表:
CREATE TABLE #a (ID INT
INSERT INTO #a VALUES (1
INSERT INTO #a VALUES (2
INSERT INTO #a VALUES (null

CREATE TABLE #b (ID INT
INSERT INTO #b VALUES (1
INSERT INTO #b VALUES (3

我们的目的是从表#b中取出ID不在表#a的记录。
如果不看具体的insert的内容,单单看这个需求,可能很多朋友就会写出这个sql了:

select * from #b where id not in (select id from #a)

但是根据上述插入的记录,这个sql检索的结果不是我们期待的ID=3的记录,而是什么都没有返回。原因很简单:在子查询select id from #a中返回了null,而null是不能跟任何值比较的。

那么您肯定会有下面的多种写法了:

select * from #b where id not in (select id from #a where id is not null)
select * from #b b where b.id not in (select id from #a a where a.id=b.id)
select * from #b b where not exists (select 1 from #a a where a.id=b.id)

当然还有使用left join/right join/full join的几种写法,但是无一例外,都是比较冗长的。其实在SQL Server 2005增加了一种新的方法,可以帮助我们很简单、很简洁的完成任务:

select * from #b
except
select * from #a

我不知道在SQL Server 2008里还有没有什么更酷的方法,但是我想这个应该是最简洁的实现了。当然,在2005里还有一种方法可以实现:

select * from #b b
outer apply
(
select id from #a a where a.id=b.id) k
where k.id is null

outer apply也可以完成这个任务。

如果我们要寻找两个表的交集呢?那么在2005就可以用intersect关键字:

select * from #b
intersect
select * from #a

ID
-----------
1

(
1 row(s) affected)
阅读(765) | 评论(0) | 转发(0) |
0

上一篇:没有了

下一篇:没有了

给主人留下些什么吧!~~