数据库课外作业参考答案
更新时间:2023-10-21 16:25:01 阅读量: 综合文库 文档下载
第四章课外作业参考答案
1、创建一个列表,显示每本书的书名以及出版社办公室中你再次订购每本书时需要与之联系的人的姓名和电话号码。
1)SQL> select title,contact,phone 2 from books b,publisher p 3 where b.pubid=p.pubid;
2)SQL> select title,contact,phone 2 from books b join publisher p 3 on b.pubid=p.pubid;
2、确定哪些订单还没有发货以及下达各个订单的客户的姓名。将结果按下达订单的日期排序。
1)SQL> select order#,lastname,firstname 2 from orders o,customers c
3 where o.customer#=c.customer# 4 and shipdate is null 5 order by orderdate;
2)SQL> select order#,lastname,firstname 2 from orders o join customers c 3 on o.customer#=c.customer# 4 where shipdate is null 5 order by orderdate;
3、列出已经购买了Fitness种类的图书的所有人的客户号和姓名。 1)SQL> select customers.customer#,lastname,firstname 2 from customers,books,orders,orderitems 3 where books.isbn=orderitems.isbn 4 and orderitems.order#=orders.order#
5 and orders.customer#=customers.customer# 6 and category='FITNESS';
2)SQL> select customers.customer#,lastname,firstname
2 from books join orderitems on books.isbn=orderitems.isbn 3 join orders on orderitems.order#=orders.order#
4 join customers on orders.customer#=customers.customer# 5 where category='FITNESS';
4、确定Jake Lucas已经购买了哪些书。 1)SQL> select title
2 from customers,books,orders,orderitems 3 where books.isbn=orderitems.isbn 4 and orderitems.order#=orders.order#
5 and orders.customer#=customers.customer# 6 and lastname='LUCAS' and firstname='JAKE'; 2)SQL> select title
2 from books join orderitems on books.isbn=orderitems.isbn 3 join orders on orderitems.order#=orders.order#
4 join customers on orders.customer#=customers.customer#
5 where lastname='LUCAS' and firstname='JAKE';
5、确定销售给Jake Lucas的每一本书的利润。将结果按订单日期排序。如果订购了多本书,那么将结果按利润的降序排序。 1)SQL> select retail-cost
2 from customers,books,orders,orderitems 3 where books.isbn=orderitems.isbn 4 and orderitems.order#=orders.order#
5 and orders.customer#=customers.customer# 6 and lastname='LUCAS' and firstname='JAKE' 7 order by orderdate,1 desc; 2)SQL> select retail-cost
2 from books join orderitems on books.isbn=orderitems.isbn 3 join orders on orderitems.order#=orders.order#
4 join customers on orders.customer#=customers.customer# 5 where lastname='LUCAS' and firstname='JAKE' 6 order by orderdate,1 desc;
6、哪一本书是由姓氏为Adams的作者编写的? 1)SQL> select title
2 from author,bookauthor,books
3 where author.authorid=bookauthor.authorid 4 and books.isbn=bookauthor.isbn 5 and lname='ADAMS'; 2)SQL> select title
2 from author join bookauthor on author.authorid=bookauthor.authorid 3 join books on books.isbn=bookauthor.isbn 4 where lname='ADAMS';
7、订购图书Shortest Poems的客户将收到什么礼品? 1)SQL> select gift
2 from books,promotion
3 where retail between minretail and maxretail 4 and title='SHORTEST POEMS'; 2)SQL> select gift
2 from books join promotion
3 on retail between minretail and maxretail 4 where title='SHORTEST POEMS';
8、确定Becca Nelson订购的图书的作者。 1)SQL> select lname,fname
2 from customers,orders,orderitems,bookauthor,author 3 where customers.customer#=orders.customer# 4 and orders.order#=orderitems.order# 5 and orderitems.isbn=bookauthor.isbn 6 and bookauthor.authorid=author.authorid
7 and firstname='BECCA' and lastname='NELSON'; 2)SQL> select lname,fname
2 from customers join orders on customers.customer#=orders.customer# 3 join orderitems on orders.order#=orderitems.order# 4 join bookauthor on orderitems.isbn=bookauthor.isbn 5 join author on bookauthor.authorid=author.authorid 6 where firstname='BECCA' and lastname='NELSON';
9、显示BOOKS表中所有图书的列表。如果某位客户已经订购了一本书,那么还要列出对应的订单号以及客户所在的州。
1) SQL> SELECT TITLE,ORDERS.ORDER#,STATE 2 FROM BOOKS LEFT JOIN ORDERITEMS 3 ON BOOKS.ISBN=ORDERITEMS.ISBN 4 JOIN ORDERS
5 ON ORDERITEMS.ORDER#=ORDERS.ORDER# 6 JOIN CUSTOMERS
7 ON ORDERS.CUSTOMER#=CUSTOMERS.CUSTOMER#; 2)SQL> SELECT TITLE,ORDERS.ORDER#,STATE
2 FROM BOOKS,ORDERITEMS,ORDERS,CUSTOMERS 3 WHERE BOOKS.ISBN=ORDERITEMS.ISBN(+) 4 and ORDERITEMS.ORDER#=ORDERS.ORDER#
5 and ORDERS.CUSTOMER#=CUSTOMERS.CUSTOMER#;
10、生成居住在佛罗里达州并且订购计算机图书的所有客户的列表。 1)SQL> select lastname,firstname
2 from books,orderitems,orders,customers 3 where books.isbn=orderitems.isbn 4 and orderitems.order#=orders.order#
5 and orders.customer#=customers.customer# 6 and category='COMPUTER' 7 and state='FL';
2)SQL>select lastname,firstname
2 from books join orderitems on books.isbn=orderitems.isbn 3 join orders on orderitems.order#=orders.order#
4 join customers on orders.customer#=customers.customer# 5 where category='COMPUTER' and state='FL'; Oracle 9i实例
JustLee Books的销售部正在准备年度促销活动。在促销期间下达订单的每一个客户都将根据他所购买的每一本书收到一份免费礼品,收到的实际礼品取决于图书的零售价。
JustLee Books还参与了某些出版社的联合广告活动。如果出版社的名称包括在广告中,那么将向JustLee Books返还一定比例的广告成本。要想确定今年促销活动的预计成本,销售部需要JustLee Books库存中的每一本书的出版社名称、利润及免费礼品。创建一个备忘录,包括必要的SQL语句以及销售部所要求的输出。 参考答案:
SQL> select title,name \ 2 from books,publisher,promotion 3 where books.pubid=publisher.pubid
4 and books.retail between minretail and maxretail;
正在阅读:
数据库课外作业参考答案10-21
电路理论复习题及参考答案03-30
大学组织部工作计划书范文05-01
10.十六年前的回忆教案03-29
中国寓言小故事文言文及翻译07-22
《进京城》观后感04-02
八年级英语上册 Unit 2 How often do you exercise Section A(3a04-10
1.Chinese Pulse Diagnosis 九分达人阅读第一篇10-26
吴昌硕题画诗(13)12-08
- 多层物业服务方案
- (审判实务)习惯法与少数民族地区民间纠纷解决问题(孙 潋)
- 人教版新课标六年级下册语文全册教案
- 词语打卡
- photoshop实习报告
- 钢结构设计原理综合测试2
- 2014年期末练习题
- 高中数学中的逆向思维解题方法探讨
- 名师原创 全国通用2014-2015学年高二寒假作业 政治(一)Word版
- 北航《建筑结构检测鉴定与加固》在线作业三
- XX县卫生监督所工程建设项目可行性研究报告
- 小学四年级观察作文经典评语
- 浅谈110KV变电站电气一次设计-程泉焱(1)
- 安全员考试题库
- 国家电网公司变电运维管理规定(试行)
- 义务教育课程标准稿征求意见提纲
- 教学秘书面试技巧
- 钢结构工程施工组织设计
- 水利工程概论论文
- 09届九年级数学第四次模拟试卷
- 课外
- 作业
- 答案
- 参考
- 数据库
- 药品管理法试题及答案
- 说题微视频课外辅助学生完成数学作业的探索研究
- 新人教版小学四年级语文上册期末试题 共四套 - 图文
- 法院院长写判决书的示范意义
- 2019学年度中学第二学期德育处工作计划34Word版
- 也门钢材市场投资前景预测报告
- 台湾省 教案
- 七年级数学培优竞赛二合一讲练教程(共15讲,含答案)
- 哈工大结构力学题库七章
- 吉化双苯厂苯胺二车间11.13特大爆炸火灾事故处置战例
- 百利可行性报告
- 2013年清华大学校级“优秀博士硕士学位论文”获奖名单 - 图文
- 必修二理解性默写及问题详解
- 幼儿园防地震演练方案
- 医学装备管理细则
- 第四册 Unit 8 Globalization tp
- K3客户端匿名登录设置方法
- 劳动关系管理实训二
- 航运业务与海商法
- 实验三 基本统计分析