日期:2014-05-16  浏览次数:20422 次

OCP考题解析_007: 内联视图优化all或any操作符
       个人的理解, 内联视图通常是指: 一个SQL查询的结果作为另一个查询的数据源, 一般在 From字句后面
       
       any表示数据集中的任何一个、相当于or
       x > any (select sal from emp where job='ANA')
       等价于:
       exists (select sal from emp where job='ANA' and x > sal)
       
       使用ALL和ANY的子查询总是可以用内嵌视图来代替,而且这个视图的性能要好的多,因为它利用了被连接表上的索引
       
       比如:any操作符
       

       需求:返回所有birthday > 出生于1985年之后的任何客户 的职员名称

select ename
from emp
where birthdate > any
        (select birthdate from customer where birthdate > '31-DEC-1985')


       上面的SQL语句可以优化为

select ename
from emp,(select min(birthdate) min_bday from customer where birthdate > '31-DEC-1985') in_line_view
where emp.birthdate > in_line_view.min_bday;


       OCP考题:

Q: 8 Click the Exhibit button and examine the data from the ORDERS and
CUSTOMERS tables.
Evaluate this SQL statement:

SELECT cust_id, ord_total
FROM orders
WHERE ord_total > ANY(SELECT ord_total
FROM orders
WHERE cust_id IN (SELECT cust_id
FROM customers
WHERE city LIKE
'New York'));

What is the result when the above query is executed?