博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
OCP 12c最新考试原题及答案(071-4)
阅读量:6528 次
发布时间:2019-06-24

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

4、(4-11) choose two:

View the Exhibit and examine the data in the PRODUCT_INFORMATION table.
Which two tasks would require subqueries? (Choose two.)

A) displaying all supplier IDs whose average list price is more than 500

B) displaying the total number of products supplied by supplier 102071 and having product status
OBSOLETE
C) displaying all the products whose minimum list prices are more than the average list price
of products having the product status orderable
D) displaying the number of products whose list prices are more than the average list price
E) displaying the minimum list price for each product status

Answer:CD

(解析:子查询用在查询未知的值。
C 的答案类似于:
SQL> select sal from emp where sal > (select avg(sal) from emp where job='SALESMAN');
D 的答案类似于:
SQL> select count(*) from emp where sal > (select avg(sal) from emp);

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

你可能感兴趣的文章
《.Net 系列》- DataGridView操作
查看>>
《WinForm 系列》- DBF文件导入导出
查看>>
企业财务战略三大特性解析
查看>>
浅析一次HTTP请求
查看>>
【LeetCode】268 Missing Number (java实现)
查看>>
王爽《汇编语言》实验11
查看>>
阅读笔记&&实现代码_of_Python灰帽子(二)
查看>>
android之相机开发
查看>>
HashMap底层实现原理
查看>>
DispatcherServlet 和 ContextLoaderListener 的关系,到底用哪个?
查看>>
python 安装 pip 安装
查看>>
Tapestry 5.3.8 + Spring 4.0.5 小例子(二)
查看>>
调试hadoop示例时遇到的问题
查看>>
错误: 找不到或无法加载主类
查看>>
OC语言@property @synthesize和id
查看>>
app后端如何保证通讯安全--aes对称加密
查看>>
iOS 设置自带UISearchBar的背景颜色
查看>>
内部命令
查看>>
springboot2.0设置登录过期时间
查看>>
fastDFS+webUploader中遇到的跨域问题
查看>>