- 1、本文档共6页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
实目的:
掌握数据查询操作。
内容:1)创建学生表student、课程表course和选课表SC,并输入数据注意数据的完整性。;(可以使用实验一中已经建立的表和数据)
2) 对各表中的数据进行不同条件的查询;‘年龄为’+cast(sage as char(2))+’岁’
From student
查询全体学生情况,查询结果按所在系升序排列,对同一系中的学生按年龄降序排列。
查询学生总人数。
查询选修了课程的学生人数。
查询选修了7号课程的学生总人数和平均成绩
查询选修6号课程学生的最好成绩
查询每个系的系名及学生人数。
查找每门课的选修人数及平均成绩
查找没有先修课的课程情况
附录:
语句清单
--sql查询实验二的代码
SELECT sno,sname --1
from student
select * ------------2
from student
select sname,sage,sdept -----3
from student
where student.sdept=IS
select distinct student.sno -----4
from student,sc
where sc.sno=student.sno
select distinct student.sno ----5
from student,sc
where sc.sno=student.sno and grade60
select ssex,sage,sdept -----------6
from student
where sno not in
(select sno
from student
where sdept=IS)
/* 这是exists的用法
select ssex,sage,sdept
from student as y
where not exists(select *
from student
where Y.sdept=CS)
*/
select sno,sname,sage,sdept -------7
from student
where sage between 18 and 20;
select * ---------------8
from student
where sname like刘%
select * -----------------9
from student
where sname like[刘李]%
select sname ----------------10
from student
where sname like刘_ _--中文占用两个字符,所以这里用两个_
select sname -------------------11
from student
where 2013-sage1983
-- select year(sage) 这是取单个人的出生年份的用法,调用year函数
select year(getdate())-s.sage+1
from student as s -------12
where sdept=CS
Select sname + 年龄为+cast(sage as char(2))+岁
From student ---------13
select *
from student ---------------------14
order by sdept,sage desc
select COUNT(sno)----------------15
from student
select COUNT(distinct sno)
from sc --------------16
/*
SELECT COUNT(*)
FROM student ----------16题解法二
WHERE EXISTS( SELECT * FROM SC WHERE sc.sno = student.sno )
*/
select COUNT(student.sno),avg(sc.grade)
from student,sc ------------17
where student.sno=sc.sno and cno=7
select max(grade)
from sc -------------------18
where cno=6
select sdept,COUNT(sno)
from student -------------------19
group by sdept
select C
您可能关注的文档
最近下载
- JGJ8-2016建筑变形测量规范.docx VIP
- 英语跨学科主题学习研究--以小学英语为例.pdf
- 2023年同德中英文幼儿园食堂落实食品安全主体责任风险管控自查检查表.doc
- 2023年中考语文真题知识点分类汇编:病句辨析 专项练习题(含解析).pdf VIP
- 小学三年级新课标人教版(试题)部编版三年级上册语文第二单元测试题及答案2.doc VIP
- 自然辩证法概论(东华大学)中国大学MOOC慕课 章节测验客观题答案.docx
- JC04人格心理学单科作业题(新版教材考生通用_202305月考生适用).pdf
- 超详细对比国标图集22G1011与16G1011的区别.pdf
- 中国人身保险从业资格A5《寿险公司经营与管理》真题卷四.docx
- 新版北京版小学一年级数学上册《认识0》教学课件(1).ppt
文档评论(0)