标签:数据 count 注意 select 信息系统 tor out ediff div
[例]查询全体学生的学号和姓名
[例]查询全体学生的详细信息
select * from student;
[例]查询全部学生的“姓名”及其“出生年”两列
第一种:
一张人员信息表里有一人生日(Birthday)列,跟据这个列,算出该人员的年龄
datediff(year,birthday,getdate())
例:birthday = ‘2003-3-8‘
getDate()= ‘2008-7-7‘
结果为:5
这样结果是会返回该人员的大概年龄,但不精确.不会精确到月或日.
按照上面测试的日期,该人员的实际年龄应该还不满5岁。在需要精确年龄的时候,就会有错.
第二种:
FLOOR(datediff(DY,birthday,getdate())/365.25)
FLOOR函数:
FLOOR(expr) 返回小于或等于expr的最大整数.FLOOR(1.1)返回1,FLOOR(-1.1)返回-2,FLOOR(1)返回1
这样就可以精确算出,该人员当前实际年龄了.
测试:
birthday = ‘2000-7-8‘
getdate()= ‘2007-7-7‘
算出结果为:6
[例]查询选修了课程的学生学号
[例]查询计算机系(IS)全体学生名单
select Sname as 学生姓名 from student where Sdept=‘IS‘;
[例]查询全体20岁以下的学生姓名和年龄
select Sname as 姓名,Sage as 年龄 from student where Sage<20;
[例]查询所有在20到23岁(含20和23)的学生姓名、系别和年龄
select Sname as 姓名,Sdept as 系别,Sage as 年龄 from student where Sage between20 and 23;
注意between 小数 and 大数。
[例]查询IS系和CS系的全体学生姓名和性别
[例]查询既不属于IS系,也不属于MA系的学生姓名和年龄
[例]查询所有姓李的学生姓名和性别
select Sname as 姓名,Ssex as 性别 from student where Sname like ‘李%‘;
[例]查询所有“2002”年入学的学生学号、姓名和系别
select Sno as 学号,Sname as 姓名,Sdept as 系别 from student where Sno like‘2002%‘;
[例]查询所有不姓“刘”的学生信息
select * from student where Sname not like‘刘%‘;
[例]查询名称含有“数据”的课程号、课程名及学分
select Cno as 课程号,Cname as 课程名,Ccredit as 学分 from course where Cname like ‘%数据%‘;
总结:
[例]查询没有先修课的课程号和课程名
select Cno as 课程号,Cname as 课程名,Cpno from course where Cpno is null;
[例]查询所有有成绩的学生学号、课程号及成绩
select Sno as 学号,Cno as 课程号,Grade as 成绩 from SC where Grade is not null;
[例]查询选修了3号课程的学生学号和成绩,结果按成绩降序排列。
select Sno as 学号,Grade as 成绩 from SC where Cno=3 order by Grade desc;
[例]查询选修了3号课程的学生学号和成绩,结果按成绩升序排列。
select Sno as 学号,Grade as 成绩 from SC where Cno=3 order by Grade asc;
count、sum、avg、max、min
[例]查询学生总数
select count(*) as 学生总数 from student;
[例]查询所有课程的总学分
select sum(Ccredit) as 所有课程总学分 from course;
[例]查询全体学生平均年龄
select avg(Sage) as 平均年龄 from student;
[例]查询1号课程的最高分
select max(Grade) as 1号课程的最高分 from SC where Cno=1;
[例]查询男女学生各有多少人。
select Ssex as 性别,count(*) as 人数 from student group by Ssex;
[例]查询每个课程的课程号和平均分。
select Cno as 课程号,avg(Grade) as 平均分 from SC group by Cno;
【例】查询选修了3门课程以上(含3门)的学生学号和选修课程数。
having 关键字后面直接跟聚集函数
在 SQL 中增加 HAVING 子句原因是,WHERE 关键字无法与合计函数一起使用。
SELECT column_name, aggregate_function(column_name) FROM table_name WHERE column_name operator value GROUP BY column_name HAVING aggregate_function(column_name) operator value
【例】查询选修了2门课程以上(含2门,但不含1号课程),学生学号和选修课程数。
【例】查询不及格门数2门以上的学生学号。
【例】查询有2名以上(含2名)学生选修了的课程号和选修人数。
[例]查询每个学生及其的选修课程情况
[例]查询每个学生的间接选修课
select SC.Sno as 学号, FIRST.Cname as 直接选修课, SECOND.Cname as 间接选修课 from SC, course as FIRST, course as SECOND where FIRST.Cno=SC.Cno and FIRST.Cpno=SECOND.Cno;
[例]查询所有学生选修课程情况(含没选修课程的学生)
select student.Sno as 学号, Sname as 姓名, sc.Cno as 选修课程号 from student LEFT OUTER JOIN SC ON student.Sno=SC.Sno;
join 用于根据两个或多个表中的列之间的关系,从这些表中查询数据
【例】查询与王敏同学在同一个系的学生信息。
select * from student where Sdept in ( select Sdept from student where Sname=‘王敏‘ );
【例】查询不与王敏同学不在同一个系的学生信息。
select * from student where Sdept not in ( select Sdept from student whereSname=‘王敏‘ );
【例】查询选修了课程名是“信息系统”的学生学号和姓名。
select student.Sno as 学号, Sname as 姓名 from student,SC where student.Sno=SC.Sno and Cno in ( select Cno from course where Cname=‘信息系统‘ )
【例】查询曾与刘晨一同上课的学生学号和姓名。(假设:一个课程只有一个上课班)
select distinct student.Sno as 学号, Sname as 姓名 from student,SC where student.Sno=SC.Sno and Cno in ( select Cno from SC,student where SC.Sno=student.Sno and student.Sno in ( select Sno from student where student.Sname=‘刘晨‘ ) )
【例】查询与王敏同学在同一个系的所有学生信息 (=判断)
【例】查询每个学生超过该课程最低分的课程号。(同类课程不是最低分的),子查询的结果返回一个数的时候,这个子查询就可以当一个数用?可以使用in符号,或者大于小于符号。
【例】查询每个学生超过他选修课程平均成绩的课程号。
【例】查询其他系中比计算机系某一学生年龄小的学生姓名,性别、年龄和所在系。
【例】查询其他系中比计算机系所有年龄都小的学生姓名和年龄。
【例】查询所有选修了1号课程的学生姓名。
【例】 查询计算机系的学生及年龄不大于19岁的学生详细信息。
【例】查询选修了1号课程的与年龄不大于19岁的 学生 详细信息 的交集。
【例】查询计算机科学系的学生与年龄不大于19岁的学生详细信息的差集。
标签:数据 count 注意 select 信息系统 tor out ediff div
原文地址:https://www.cnblogs.com/zhangkaimin/p/11386732.html