实验二总结报告_第1页
实验二总结报告_第2页
实验二总结报告_第3页
实验二总结报告_第4页
全文预览已结束

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1、数据库原理与应用实验报告实验名称:实验二班 级:软件工程学 号:姓 名:一、实验目的1掌握使用SQL语句创建和删除数据表,创建各种完整性约束。2掌握使用SQL语句修改表的结构。3. 掌握查询语句的使用方法,重点掌握连接查询和嵌套查询。二、实验过程1.使用SQL语句建立4个关系,:供应商表S (Sno, Sname, City)零件表P(Pno, Pname, Color, Weight)工程项目表J(Jno, Jname, City)供应情况表 SPJ(Sno, Pno, Jno, QTY)创建S表的语句为:create table s(sno varchar2(20) primary key

2、, sname varchar2(40) unique, city varchar2(10);语句的执行结果为:创建p表的语句为:create table p(pno varchar2(20) primary key, pname varchar2(40), color varchar2(10), weight number check(weight=1 and weight2;(8)查询零件名以“螺”字开头的零件信息。select * from p where pname like 螺%;(9)查询工程项目名中最后一个字为“厂”字的工程项目所在的城市。select city from j w

3、here jname like %厂;(10)查询给每个工程供应零件的供应商的个数。select jno,count(distinct sno) from spj group by jno;(11)查询供应数量在10002000之间(包括1000和2000)的零件名称。select pname from p where pno in (select pno from spj group by pno having sum(qty)=1000 and sum(qty)200;(6)查询姓名为田丕龙的学生所学课程的课程名与学分。select cname,gredit from course whe

4、re cno in (select cno from sc where sno in (select sno from student where sname=田丕龙));(7)查询选修课程号为“160”或“304”的学生的学号。select sno from sc where cno=160 or cno=304;(8)查询选修了课程号为“160”和“304”的学生的学号。select x.sno from sc x,sc y where x.sno=y.sno and o=160 and o=304;(9)查询学习全部课程的学生姓名。select sname from student wh

5、ere sno in (select sno from sc group by sno having count(cno)= (select count(cno) from course);(10)查询1994年1月1日以前出生的学生的姓名和专业。select sname,major from student where to_date(1994/01/01,yyyy/mm/dd)-birth=0;(11)查询选修了“大学英语4”课程且成绩在90分以上的学生姓名。select sname from student where sno in (select sno from sc where g

6、rade90 and cno in (select cno from course where cname=大学英语4);(12)查询选修了5门以上课程的学生学号和姓名。select sno,sname from student where sno in (select sno from sc group by sno having count(cno)5);(13)查询未选修“政治经济学”课程的学生情况。select * from student where sno!=all (select sno from sc where cno in (select cno from course where cname=政治经济学);(14)统计102和378号课程的选课人数及平均成绩。select cno,count(sno) 人数,avg(grade) from sc group by cno having cno=102 or cno=378;(15)查询比所有“信息管理与信息系统”专业学生年龄都大的学生。select * from student where birth (select min(birth) from student where major=信息

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论