【2019年8月版本】OCP 071認證考試最新版本的考試原題-18
最新學訊:近期OCP認證正在報名中,因考試人員較多請盡快報名獲取最近考試時間,報名費用請聯系在線老師,甲骨文官方認證,報名從速!
我要咨詢【2019年8月版本】OCP 071認證考試最新版本的考試原題-18-CUUG整理
OCP的071考試,在8月份左右全部換了新題,近期考試的題也全部不包括之前的題庫了,這次oracle更新071考試題庫,雖然全都是新題,但跟之前的相比也有關聯,比如把之前的考題稍微變換一下數字、更新一下日期、或者再加一個錯誤選項等等。
對于2019年8月份的更新,我們CUUG已經進行了收集整理,并給出初步的答案和講解,僅供參考,希望對考OCP 071認證的同學有幫助。
Choose two
Which two statements are true about the WHERE and HAVING clouses in a SELECT statement?
A) The WHERE clause can be used to exclude rows after divding them into groups
B) WHERE and HAVING clauses can be used In the same statement only if applied to dfferent table columns.
C) The HAVING clause can be used with aggregating functions in subqueries.
D) Aggregating functions and columns used in HAVING clauses must be spectfied in thes SELECT list of a query.
E) The WHERE clause can be used to exclude rows before dviding them into goups.
Answer:CE
(解析:having 子句是可以跟子查詢進行配合使用,而且子查詢中也可以有分組函數;
Oracle 先過濾再分組,照樣子可以減少數據的處理數量;
D 檔案說在 having 子句中用到列必須出現在 select 子句中,這是不需要的。)