数据库实验四董文豪还有_第1页
数据库实验四董文豪还有_第2页
数据库实验四董文豪还有_第3页
数据库实验四董文豪还有_第4页
数据库实验四董文豪还有_第5页
已阅读5页,还剩3页未读 继续免费阅读

下载本文档

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

文档简介

1、实验三重点create table student1 (snum char(4)not null primary key check(snum like s0-90-90-9) sanme varchar(20),sex char(2) check (sex in (男, 女),dept varchar(30),birthday time,ephone char(12) CHECK(ephone like0-90-90-9%0-90-90-90-90-90-90-90-9)create table course1 (cnum varchar(4) primary key check(cnum

2、like c0-90-90-9),credits(2) check(credits=0and credits=0),snum char(4)foreign key referencheck(score=100andscore)create (um(4)tablesection1char(5) primary key check(um like0-90-90-90-90-9),cnum char!)(4) foreign key referencourse,pnum char(4) check(substring(pnum,1,1)=p),inserto coursevalues(c116,大,

3、6,必修课,外语系,大,同济大学)字符长度 len(sname)首字母 substring(snum,1,1)实验四 SQL 数据查询1153371 董文豪 航空航天类.1.列出不及格成绩的学生select distinct student.snum,sname from student,scwhere student.snum=sc.snum and score602.列出选修了计算机系课程的学生和.select distinct sname,YEAR(GETDATE()-YEAR(birthday )as age fromstudent,sc,course,sectionswhere st

4、udent.snum=sc.snum andum and course.dept=计算机系um and3.检索选修了数据库技术课程的学生和系别.select sname,student.dept from sc,sections,course,studentwhere student.snum=sc.snum andum and cname=数据库技术um and4列出选修了所有课程的学生。select snum,sname from studentwhere not existect * from course where not existect*fromsc,sectionswhereu

5、m and sc.snum=student.snum)umand5检索每门课程成绩都在 80 分以上的学生。select snum,sname from studentwhere snum not in (select snum from sc where score80)6检索获奖学金的学生(每门课程在 80 分以上,平均成绩在 90 分以上)。select student.snum,sname from student,scwhere sc.snum=student.snum and sc.snum not in (select snum from sc where score=907.

6、检索选修了大的学生和成绩,并按成绩从高到低排序。select student.snum,sname,score as englishscore fromstudent,sc,course,sectionswhere sc.snum=student.snum andum and cname=大order by score descum and8. 统计每门课程的选修人数,输出列名为课程号、人数。select wheregroup byum,COUNT(*) as numbers from sc,sections umumselectfrom student,scwhereum as 课程号 ,

7、COUNT (student.snum)as 人数,course,sectionsum andumandsc.snum=student.snumgroup byum9. 查询选修了数据库技术、没有选修高等数学的学生和系别。select sname,student.dept from student,sc,sections,coursewhere sc.snum=student.snum andum and cname=数据库技术 and (select snum from sc,sections,course whereum and student.snum not inumum and cn

8、ame=高等数学)and10.检索使用高等教育select cname from coursewhere textbook like %高等教育的的课程名。11. 统计所有课程的最高成绩、最低成绩、平均成绩。select cname,MAX(score) as ma,MIN(score) as minscore,AVG(score) asavgscorewhere group byfrom sc,course,sectionsum andcnameumselect cname,max(score) as 最高成绩 ,MIN (score) as 最低成绩,avg(score) as平均成绩fr

9、om course ,sc ,sectionswheregroup by cnameum andumum12. 统计每门课程的选课人数及不及格人数。ame,选课人数,不及格人数 fromselect(select cname,COUNT(*)as 选课人数 from sc,course,sectionswhereum andumgroup by cname)s left join(select cname,COUNT(*)as 不及格人数 from sc,course,sectionswhere score60 group by on或者um andum andall cname)fameselect cname,COUNT(*)as 选课人数,SUM(caseend)as 不及格人数 from sc,course,sectionswhen score60then 1 else0wheregroup by cnameum andum13.查询土木工程系、交通工程系和城市规划系的学生学号和select dept,snum,sname from studentwhere dept in(土木工程,交通工程,城市规划)。14.查询选修课数据库技术或选修了多的学生学号。select distinct snum fr

温馨提示

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

评论

0/150

提交评论