OCP-1Z0-051 第129题 RIGHT OUTER JOIN的使用

本文解析了一个具体的SQL查询案例,展示了如何使用RIGHT OUTER JOIN来获取PROMOTIONS表中所有记录,无论这些记录是否在SALES表中有匹配项。通过这个例子,读者可以更好地理解表连接的概念及其实际应用。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

一、原题
View the Exhibits and examine the structures of the PROMOTIONS and SALES tables.

Evaluate the following SQL statement:
SQL>SELECT p.promo_id, p.promo_name, s.prod_id
FROM sales s RIGHT OUTER JOIN promotions p
ON (s.promo_id = p.promo_id);
Which statement is true regarding the output of the above query?
A. It gives the details of promos for which there have been sales.
B. It gives the details of promos for which there have been no sales.
C. It gives details of all promos irrespective of whether they have resulted in a sale or not.
D. It gives details of product ID s that have been sold irrespective of whether they had a promo or not.

答案:C

二、题目翻译
查看PROMOTIONS and SALES表的结构
评估下面的SQL语句
关于上面查询的输出哪句话是正确的?
A.输出已经销售的promos。
B.输出没有销售的promos。
C.不管有没有销售,输出所有的promos。
D.不管有没有promos,输出所有产品ID。
三、题目解析
因为使用的是RIGHT OUTER JOIN,所以会以右表promotions为准,输出所有的促销信息,不管有没有销售,没有的话,显示为空。

表连接的用法,详见:
       
http://blog.csdn.net/holly2008/article/details/25704471

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值