149.View the Exhibits and examine the structures of the COSTS and PROMOTIONS tables.

来源:互联网 发布:百会软件 编辑:程序博客网 时间:2024/04/30 20:14
149.View the Exhibits and examine the structures of the COSTS and PROMOTIONS tables.
Evaluate the following SQL statement:


SQL> SELECT prod_id FROM costs
WHERE promo_id IN (SELECT promo_id FROM promotions
WHERE promo_cost < ALL
(SELECT MAX(promo_cost) FROM promotions
GROUP BY (promo_end_date-
promo_begin_date)));


What would be the outcome of the above SQL statement?
A.It displays prod IDs in the promo with the lowest cost.
B.It displays prod IDs in the promos with the lowest cost in the same time interval. 
C.It displays prod IDs in the promos with the highest cost in the same time interval.
D.It displays prod IDs in the promos with cost less than the highest cost in the same time interval.
答案:D
解析:用到了group by(promo_end_date-promo_begin_date),所以是in the same time interval,因此选择D
0 0