- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
SQL语句上机题
习题6.1.3:使用习题5.2.1中提供的数据库模式用SQL语句写出后面的查询,并使用习题5.2.1提供的资料写出查询结果。
Product(marker, model, type)
PC(model, speed, ram, hd, rd, price)
Laptop(model, speed, ram ,hd, screen, price)
Printer(model, color, type, price)
* a) 找出所有价格在$1200以下的PC机的型号、速度和硬盘大小。
Select model,speed,hd
From pc
Where piece1200
* b) 要求同(a),但是重命名列speed为megahertz以及列hd为gigabytes。
select model,speed as megahertz,hd as gigabytes
from pc
where price1200
c) 找出所有打印机制造厂商。
select distinct maker
from product
where type=’printer’
d) 找出价格在$2000以上的手提电脑的型号、内存大小和屏幕尺寸。
select model,ram,screen
from laptop
where price2000
* e) 找出关系Printer中所有彩色打印机元组,注意属性color是一个布尔类型。
select model,type,price
from printer
where color=’true’
f) 找出价格少于$2000并拥有12X或16X DVD的PC机的型号、速度和硬盘尺寸。把rd属性看作一个字符串属性。
select model,speed,hd
from pc
where price2000 and rd=’12xDVD’ or rd=’16xDVD’
习题6.1.4:基于习题5.2.4给出的数据库模式和资料写出后面的查询语句以及查询结果。
Classes(class, type, country, numGuns, bore, displacement)
Ships(name, class, launched)
Battles(name, date)
Outcomes(ship, battle, result)
找出至少装备10门火炮的船只所属类别名和制造国家
select country,type
from classes
where numGuns=10
b) 找出在1918年以前下水的舰船的名字,并且把结果列名改为ShipName。
select name as shipname
from ships
where launched1918
c) 找出所有在战役中被击沉的船只和那次战役的名字
select ship,battle
from outcomes
where result=’sunk’
。
d) 找出具有相同类别名的所有船只。
select distinct ship1.class, ship1.type
from classes as ship1,classes as ship2
where ship1.type=ship2.type and ship1.class!=ship2.class
order by type
e) 找出所有以”R.”字符开头的船只的名字。
select name
from ships
where name like’R%’
! f) 找出所有包括三个或三个以上单词的船只名字(例如King George V)。
select ship
from outcomes
where ship like ‘% % % ‘or ship like ‘% % % %’;
习题6.2.2:根据习题5.2.1的数据库模式写出下列查询,并用那个习题给出的数据算出查询结果。
Product(marker, model, type)
PC(model, speed, ram, hd, rd, price)
Laptop(model, speed, ram ,hd, screen, price)
Printer(model, color, type, price)
* a) 查询硬盘容量至少在30G的手提电脑制造商及电脑的速度。
select maker,speed
from product,laptop
where laptop.model=product.model and laptop.hd30
文档评论(0)