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

本文共 871 字,大约阅读时间需要 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://blog.51cto.com/13854012/2349499

你可能感兴趣的文章
作为程序员容易忽略的一些问题 读《Code Quality :The Open Source Perspective》有感...
查看>>
关于加入收藏的兼容问题
查看>>
UVa 11110 - Equidivisions
查看>>
(一)spring cloud微服务分布式云架构 - Spring Cloud简介
查看>>
伪前端笔记
查看>>
Spark之join、leftOuterJoin、rightOuterJoin及fullOuterJoin
查看>>
20172307 2018-2019-1 《程序设计与数据结构》实验1报告
查看>>
Kafka 0.9 新特性
查看>>
Angualr2 ChartModle图表
查看>>
如何准确高效的获取数据库新插入数据的主键id
查看>>
In-App Purchases验证
查看>>
数据库mysql进阶之路(2)--查询操作
查看>>
解决android模拟器无法上网问题
查看>>
跟我一起学习ASP.NET 4.5 MVC4.0(六)(转)
查看>>
Maven搭建SpringMVC + SpringJDBC项目详解
查看>>
初识swipe.js
查看>>
<Android Framework 之路>Android5.1 Camera Framework(四)——框架总结
查看>>
MySQL日期时间函数大全(转)
查看>>
Silverlight实例教程 - Validation数据验证基础属性和事件(转载)
查看>>
JAVA未来前景还能持续多久
查看>>