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

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

9、(5-5) choose the best answer

View the Exhibit and examine the structure of the SALES and STORES tables.
You want to display the store name and the total quantity sold for each item in the store.

Which SQL statement will give the required output?

A) SELECT str.name, s1.items_id, SUM(s1.quantity)
FROM sales s1 JOIN stores str
ON (s1.store_id = str.store_id)
GROUP BY str.name, s1.items_id, s1.quantity;

B) SELECT str.name, s1.items_id, SUM(s1.quantity)

FROM sales s1 JOIN stores str
ON (s1.store_id = str.store_id)
GROUP BY str.name, s1.items_id;

C) SELECT str.name, s1.items_id,

(SELECT SUM(quantitY)
FROM sales sls
ON sls.store_id = s1.store_id
GROUP BY sls.store_id)
FROM sales s1 JOIN stores str
ON (s1.store_id = str.store_id);

D) SELECT str.name, s1.items_id, SUM(s1.quantity)

FROM sales s1 JOIN stores str ON (s1.store id = str.store_id)
GROUP BY s1.items_id, s1.quantity;

Answer:B

(解析:分组函数的最基本特点,没有出现在分组函数中的列必须要出现在 group by 子句中。)

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

你可能感兴趣的文章
室内定位系列(五)——目标跟踪(卡尔曼滤波)
查看>>
test
查看>>
Linux中的用户切换:su和su -的区别(转)
查看>>
压缩 & 解压缩 命令汇总:tar、zip & unzip、
查看>>
用一句SQL取出第 m 条到第 n 条记录的方法
查看>>
go语言:go写的日记簿(开源)
查看>>
Binary Tree Level Order Traversal
查看>>
理解作用域(引擎,编译器,作用域)
查看>>
无阻塞加载脚本
查看>>
走进缓存的世界(一) - 开篇
查看>>
install chrome in elementary os
查看>>
OpenGL程序链接时错误
查看>>
go语言教程哪里有?Go从入门到精通系列视频3.1 对称加密算法
查看>>
MSIL Tutorial
查看>>
URAL 1077 Travelling Tours(统计无向图中环的数目)
查看>>
跨域ajax请求访问的三种方式
查看>>
Android实例-打电话、发短信和邮件,取得手机IMEI号(XE8+小米2)
查看>>
之前整理的笔记-杂记
查看>>
Java IO: RandomAccessFile
查看>>
上下滑动隐藏显示导航栏
查看>>