阅读<SQL语言艺术>实践三

【摘要】

小结果集,间接条件{Small Result Set,Indirect Criteria}

典型例子:哪些客户订购了特定产品

可用两类方法表达:

.使用连接,加上distinct去除结果中的重复记录

.使用关联或非关联子查询

首先什么是关联子查询、非关联子查询?

关联子查询:对于外部查询返回的每一行数据,内部查询都要执行一次。另外,在关联子查询中是信息流是双向的。外部查询的每行数据传递一个值给子查询,然后子查询为每一行数据执行一次并返回它的记录。然后,外部查询根据返回的记录做出决策。

非关联子查询:子查询只执行一次,放在内存中

举例:

关联子查询

select c.cust_id,c.cust_type_cd,c.city
  from customer c
  where 2 = (select count(*)
  from account a
  where a.cust_id = c.cust_id);

非关联子查询

select c.cust_id,c.cust_type_cd,c.city
  from customer c
  where c.cust_id in (select cust_id from order where ctime between '2010-1-1' and '2011-1-1')

在MsSql Server 2000下建一个模拟的“哪些客户订购了特定产品”关系表,追加少量数据,执行以下Sql:

Select distinct B.CustomeID From TBMotoOrderDetail A
Inner Join TBMotoOrder B On A.OrderID = B.OrderID
Inner Join TBMotoProduct C On A.ProductID = C.ProductID And C.Name = 'Batmobile'

 
Select CustomeID From TbMotoOrder Where OrderID in (Select A.OrderID From TBMotoOrderDetail A Inner Join TBMotoProduct C On A.ProductID = C.ProductID Where C.Name = 'Batmobile')

Select CustomeID From TbMotoOrder Where Exists(Select A.OrderID From TBMotoOrderDetail A Inner Join TBMotoProduct C On A.ProductID = C.ProductID Where A.OrderID = TBMotoOrder.OrderID And C.Name = 'Batmobile')

执行计划如下:(点击此图可新开页面浏览大图)

点击新开页面浏览大图

由此看见:少量数据集下,3类执行计划占比都一样;

文中描述:随着Orders表越来越大,(其关联子查询)它的性能就逐渐让我们如坐针毡了

此话测试可在后续补充结论,但从关联子查询和非关联子查询的定义可以基本知道执行顺序

个人还是强调:

第一步先按常规写出正确的sql,再着手如何使用关联子查询或非关联子查询

posted @ 2010-12-31 10:28  西就东城  阅读(311)  评论(0编辑  收藏  举报