【071題庫】OCP 12c考試原題解析及答案(071-4)
最新學訊:近期OCP認證正在報名中,因考試人員較多請盡快報名獲取最近考試時間,報名費用請聯(lián)系在線老師,甲骨文官方認證,報名從速!
我要咨詢2018年OCP 11g考試原題解析已經講解30多次課,500多道考試原題,最終達到98%以上的考題覆蓋度及95%以上的考試通過率。
2019年OCP 11g將升級到12c,OCP 12c考試解析免費公開課也已經開始了,歡迎大家收看!
OCP解析公開課時間:【每周五晚8點】
OCP解析公開課地址:http://ke.qq.com/course/326223
OCP解析群資料分享:1015267481 驗證:ocp
另外,除了OCP公開課,OCM題庫直播也同步進行中,OCM最新題庫大爆料-【每周四晚8點】,【微信群直播】,可以聯(lián)系咨詢老師進群參與
-------------------------------------------------------
4.choose the best answer
View the Exhibits and examine PRODUCTS and SALES tables.
You issue the following query to display product name and the number of times the
product has been sold:
SQL>SELECT p.prod_name, i.item_cnt
FROM (SELECT prod id, COUNT(*) item_cnt
FROM sales GROUP BY prod_id) i RIGHT OUTER JOIN products p
ON i.prod_id = p.prod_id;
What happens when the above statement is executed?
A) The statement executes successfully and produces the required output.
B) The statement produces an error because a subquery in the FROM clause and outer-joins cannot be used together.
C) The statement produces an error because ITEM_CNT cannot be displayed in the outer query.
D) The statement produces an error because the GROUP BY clause cannot be used in a subquery in the FROM clause.
Answer:A
(SQL> select d.dname,e.emp_cnt
from (select deptno,count(*) emp_cnt from emp group by deptno)e right outer join dept d
on e.deptno=d.deptno;
DNAME EMP_CNT
-------------- ----------
ACCOUNTING 2
RESEARCH 4
SALES 6
OPERATIONS
TRAIN)
- 陳衛(wèi)星-老師CUUG金牌講師
- 陳老師 CUUG金牌講師 精通Oracle管理、備份恢復、性能優(yōu)化 11年Ora...[詳細了解老師]
