OCP 1Z0 051 144

144. View the Exhibit and examine the structure of the PRODUCTS table. 
You want to display the category with the maximum number of items. 
You issue the following query: 
SQL>SELECT COUNT(*),prod_category_id 
FROM products 
GROUP BY prod_category_id 
HAVING COUNT(*) = (SELECT MAX(COUNT(*)) FROM products); 
What is the outcome?  
A. It executes successfully and gives the correct output. 
B. It executes successfully but does not give the correct output. 
C. It generates an error because the subquery does not have a GROUP BY clause. 
D. It generates an error because = is not valid and should be replaced   by the   IN operator. 
the category with the maximum number of items
먼저 category 에 따라 그룹 을 나 누 어 항목 수 를 모 아야 max (항목 수) 를 얻 을 수 있 습 니 다.
이 문제 의 집합 함수 가 잘못 되 었 습 니 다.
수요 에 따라 group by 를 증가 시 켜 야 합 니 다.
SQL> SELECT MAX(COUNT(*)) FROM sh.products;
SELECT MAX(COUNT(*)) FROM sh.products
ORA-00978: nested group function without GROUP BY

Answer: C

좋은 웹페이지 즐겨찾기