博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【12c OCP】CUUG OCP认证071考试原题解析(34)
阅读量:5883 次
发布时间:2019-06-19

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

34.choose two

View the Exhibit and examine the structure of the PRODUCT_INFORMATION and INVENTORIES tables.

 

You have a requirement from the supplies department to give a list containing PRODUCT_ID, SUPPLIER_ID, and QUANTITY_ON_HAND for all the products where in QUANTITY_ON_HAND is less than five.

Which two SQL statements can accomplish the task? (Choose two.)

A) SELECT product_id, quantity_on_hand,supplier_id

FROM product_information

NATURAL JOIN inventories AND quantity_on_hand < 5;

B) SELECT i.product_id, i.quantity_on_hand,pi.supplier_id

FROM product_information pi JOIN inventories i

ON (pi.product_id=i.product_id) AND quantity_on_hand < 5;

C) SELECT i.product_id, i.quantity_on_hand,pi.supplier_id

FROM product_information pi JOIN inventories i

USING (product_id) AND quantity_on_hand < 5;

D) SELECT i.product_id, i.quantity_on_hand,pi.supplier_id

FROM product_information pi JOIN inventories i

ON (pi.product_id=i.product_id)

WHERE quantity_on_hand < 5;

Answer:BD

(解析:AC 语法不对,执行时显示 ORA-00933: SQL 命令未正确结束

类似的语句:

1、

select d.deptno,d.dname,e.empno,e.ename,e.sal

from emp e join dept d

on (e.deptno=d.deptno)

where sal < 3000;)

2、

select d.deptno,d.dname,e.empno,e.ename,e.sal

from emp e join dept d

on (e.deptno=d.deptno) and sal < 3000;

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

你可能感兴趣的文章
leetcode 110 Balanced Binary Tree
查看>>
项目开发总结
查看>>
知行合一
查看>>
jmeter插件之jsonpath提取响应结果和做断言
查看>>
发布支持多线程的PowerShell模块 —— MultiThreadTaskRunner
查看>>
Ubuntu ctrl+alt会导致窗口还原的问题
查看>>
推荐系统那点事 —— 基于Spark MLlib的特征选择
查看>>
linux 下RTL8723/RTL8188调试记录(命令行)【转】
查看>>
[Contiki系列论文之1]Contiki——为微传感器网络而生的轻量级的、灵活的操作系统...
查看>>
Android 网络编程 记录
查看>>
微软同步发行Windows 10和Windows 10 Mobile系统更新
查看>>
Zeppelin的入门使用系列之使用Zeppelin运行shell命令(二)
查看>>
form表单下的button按钮会自动提交表单的问题
查看>>
那些年追过的......写过的技术博客
查看>>
python基础教程_学习笔记19:标准库:一些最爱——集合、堆和双端队列
查看>>
CSS魔法堂:Transition就这么好玩
查看>>
解决win7远程桌面连接时发生身份验证错误的方法
查看>>
C/C++ 多线程机制
查看>>
Boost在vs2010下的配置
查看>>
一起谈.NET技术,ASP.NET伪静态的实现及伪静态的意义
查看>>