网站大量收购独家精品文档,联系QQ:2885784924

数据库上机作业答案.doc

  1. 1、本文档共16页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
数据库上机作业答案

数据库上机作业答案 --10级《数据库系统》上机作业02—单号 --要求:实现对关系数据库product中相关数据的简单查询操作。 --product(maker,model,type) --PC(model,speed,ram,hd,rd,price) --Laptop(model,speed,ram,hd,screen,price) --Printer(model,color,type,price) --实验4:SQL的简单查询 --a)找出所有价格低于$1000的PC型号、速度和硬盘大小 select model,speed,hd from pc where price1000 --b)要求同(a),但要将列speed重命名为gigahertz,并将列hd重命名为gigabytes select model,speed as gigahertz,hd as gigabytes from pc where price1000 --c)找出所有打印机制造厂商。 select maker from product where type=printer --d)找出价格高于$1500的笔记本电脑的型号、内存大小和屏幕尺寸 select model,ram,screen from laptop where price1500 --e)找出关系Printer中所有彩色打印机元组。注意属性color是一个布尔类型。 select * from printer where color=true --f)找出速度为3.2且价格低于$2000的PC的型号和硬盘尺寸。 select model,hd from pc where speed=3.2 and price2000 --10级《数据库系统》上机作业02—双号 --要求:实现对关系数据库ship中相关数据的简单查询操作。 --Classes(class,type,country,numGuns,bore,displacement) --Ships(name,class,launched) --Battle(name,date) --Outcomes(ship,battle,result) --实验4:SQL的简单查询 --a)找出至少有10门炮的军舰类别名和制造国家。 select class,country from classes where numguns=10 --b)找出在1918年以前下水的舰船的名字,并且把结果列名改为ShipName select name from ships where launched1918 --c)找出所有在战斗中被击沉的船只和那次战斗的名字 select battle from outcomes where result=sunk --d)找出所有和它的类别名同名字的船只 select name from ships where name=class --e)找出所有以“R”字符打头的船只的名字。 select name from ships where name like R% --!f)找出所有包括三个或三个以上单词的船只名字(如King George V) select name from ships where name like [A-Z]%[a-z][ ][A-Z]%[a-z][ ][A-Z]% --10级《数据库系统》上机作业03—单号 --要求:实现对关系数据库product中相关数据的连接查询操作。 --product(maker,model,type) --PC(model,speed,ram,hd,rd,price) --Laptop(model,speed,ram,hd,screen,price) --Printer(model,color,type,price) --实验5:SQL的连接查询 --a)查询硬盘容量至少30GB的笔记本电脑制造商及该电脑的速度。 select maker,speed from product,laptop where product.model=laptop.model and hd=30 select maker,speed from product inner join laptop on product.model=laptop.model where hd=30 --b)查询制造商B生产的任意类型的所有产品的型号和价格。 select product.model,price from product,pc where p

文档评论(0)

mg60065 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档