博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【OCP-12c】CUUG 071题库考试原题及答案解析(23)
阅读量:6233 次
发布时间:2019-06-22

本文共 1085 字,大约阅读时间需要 3 分钟。

23.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)

转载于:https://www.cnblogs.com/cnblogs5359/p/10407358.html

你可能感兴趣的文章
转 一个游戏程序员的学习资料
查看>>
4.1-web前端性能测试基础概述
查看>>
Python引入父目录
查看>>
分时函数的通用实现
查看>>
VBA学习资料分享-4
查看>>
调用GP服务进行裁剪
查看>>
Algs4-1.3.38删除第k个元素-单链表实现
查看>>
C#温故而知新学习系列之字符串处理—指定字符串的显示格式(一)
查看>>
高精度的Timer(Objetive C)
查看>>
亲和串 http://acm.hdu.edu.cn/showproblem.php?pid=2203
查看>>
百度语音使用
查看>>
在无法进行微信应用的调试和无法使用微信的web开发工具的时候我们怎么才能调试...
查看>>
hausaufgabe--python 23- Recurse 2
查看>>
二维费用的背包问题
查看>>
Nyoj 虚拟的城市之旅(bfs)
查看>>
Some file crunching failed, see logs for details
查看>>
判断字符特征
查看>>
DAY3-python函数
查看>>
C语言的关键字,运算符,标识符
查看>>
selenium鼠标操作及下拉框的操作
查看>>