数据库系统原理.doc

上传人:xin****828 文档编号:6650329 上传时间:2020-03-01 格式:DOC 页数:7 大小:205.53KB
返回 下载 相关 举报
数据库系统原理.doc_第1页
第1页 / 共7页
数据库系统原理.doc_第2页
第2页 / 共7页
数据库系统原理.doc_第3页
第3页 / 共7页
点击查看更多>>
资源描述
数据库系统原理实验报告姓名: 指导教师: 学号: 实验日期:2016/6/7 一、实验目的2、用SQL语句建立上述表,自定义主键和外键,对于student表建立约束条件:ssex仅能取male或female;sage在18和22之间。并完成下面的查询语句。1、查询所有选修过“Bibliometrics”课的学生的姓名和成绩;mysql select s.sname,sc.grade from student as s,sc where s.sno in(select sno from sc where grade=60 and cno=C05) and sc.grade in(select grade from sc where grade=60 and cno=C05);2、查询考试成绩不及格的学生的个数;mysql select count(*) from sc where grade select sname,sno,ssex from student where sname like %z%;4、查询选修了“Introduction to the Internet”课程的学生的学号及其成绩,查询结果按分数的降序排列;mysql select sno,grade from sc where cno in (select cno from course where cname like Introd%to%Inter%) order by grade desc;5、查询“Zuo li”同学选修课程的总学时(time)数mysql select sum(c.ctime) from course c where cno in (select cno from sc where sno in (select sno from student where sname=Zuo li);6、查询年龄不大于20岁的学生的平均考试成绩;mysql select avg(grade) from sc where sno in (select sno from student where sage select distinct count(sno) from sc where cno in (select cno from course where cname like D%Syst%) and sno in (Select sno from student where sdept like compu%);8、查询同时选修课程“Database System”和“Introduction to the Internet”的学生姓名;mysql select sname from student where sno in (select sno from sc where cno in (select cno from course where cname like D%S%) union (select cno from course where cname like In%to%the%);9、查询选修的课程中含有“Wang gang”同学所有选修课程的学生姓名。mysql select sname from student where sno in (select sno from sc where cno in (select cno from sc where sno in (select sno from student where sname=Wang gang); 10、查询“Information Technology for Information Management”考试成绩为空的学生姓名及专业名称。mysql select sname,sdept from student where sno in (select sno from sc where grade is null); 11、查询“computer science”专业学生每个人的选修课总学分。mysql select avg(grade) from sc where sno in (select sno from student where sdept like compu%); 12、查询个人考试平均成绩高于专业平均成绩的学生姓名mysql select stu.sname from student as stu where stu.sno in (select sno from sc where (select avg(grade) from sc where sno=stu.sno) (select avg(grade) from sc); 13、查询个人考试平均成绩高于女生平均成绩的男生姓名mysql select sname from student as stu where stu.ssex=male and stu.sno in (select sno from sc where (select avg(grade) from sc where sno=stu.sno) (select avg(grade) from sc where sno in (select sno from student where ssex=female); 14、查询比“computer science”专业所有学生年龄都大的学生姓名。mysql select * from student where sdept like com% and sage in(select max(sage) from student where sdept like com%); 15、查询考试成绩仅有一科不及格学生姓名mysql select stu.sname from student as stu where stu.sno in (select sno from sc where (select count(grade) from sc where sno = stu.sno and grade 60)=1);
展开阅读全文
相关资源
相关搜索

当前位置:首页 > 临时分类 > 人文社科


copyright@ 2023-2025  zhuangpeitu.com 装配图网版权所有   联系电话:18123376007

备案号:ICP2024067431-1 川公网安备51140202000466号


本站为文档C2C交易模式,即用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。装配图网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知装配图网,我们立即给予删除!