300字范文,内容丰富有趣,生活中的好帮手!
300字范文 > 查询计算机科学系全体学生的名单 SQL Server数据查询

查询计算机科学系全体学生的名单 SQL Server数据查询

时间:2021-09-09 23:21:54

相关推荐

查询计算机科学系全体学生的名单 SQL Server数据查询

准备工作

预先准备所用到的表

1、学生表 students

2、课程表 course

3、学生选课表

单表查询

查询的语句一般为

select //(distinct) 目标列表达式

from //表名或视图名

where //条件表达式

group by 列名 having条件表达式

order by ASC|DESC 升序|降序

1、选择表中的若干列

(1)查询指定列

例 查询全体学生的学号与姓名

select sno,sname

from student;

例 查询全体学生的姓名、学号、所在系

select sname,sno,sdept

from student;

(2)查询全部列

例 查询全体学生的详细信息

select *

from student

例 查询全体学生的姓名与出生年份(假定今年为)

select sname,-sage

from student;

例 查询全体学生的姓名、出生年份和所在的院系,要求用小写字母表示系

select sname,'Year of Birth',-sage,LOWER(sdept)

from student;

用小写字母表示为LOWER() 大写字母表示为UPPER()

我们发现查询结果的后三列都没有列明,可以通过别名来改变查询结果的列标题

select sname Name,'Year of Birth' Birth,-sage Birthday,LOWER(sdept) Department

from student;

2、选择表中的若干元组

(1)消除取值重复的行

例 查询选修了课程的学生

select sno

from sc;

我们发现查询结果里面有重复的行,如想出去重复的行,可以使用distinct

select distinct sno

from sc;

如果没有distinct关键词,则默认为all

select sno

from sc;

等价于

select all sno

from sc;

(2)查询满足条件的元组

常用的查询条件

查询条件谓词比较=,>,=,<=,!=,<>,!>,!

确定范围between and,not between and

确定集合in,not in

字符匹配like,not like

空值is null,is not null

多重条件(逻辑运算)and,or,not

①比较大小

例 查询计算机科学系全体学生名单

select sname

from student

where sdept='cs';

例 查询所有年龄在20岁以下的学生姓名及其年龄

select sname,sage

from student

where sage<20;

②却定范围

例 查询年龄在20~23岁之间的学生姓名、系别和年龄

select sname,sage,sdept

from student

where sage between 20 and 23;

③确定集合

例 查询计算机科学系(cs)数学系(ma)和信息系(is)学生的姓名和性别

select sname,ssex

from student

where sdept in('cs','ma','is');

④字符匹配

例 查询学号为15121的学生的详细情况

select *

from student

where sno like'15121';

//等价于

select *

from student

where sno='125121';

查询所有刘姓学生的姓名、学号和性别

select sname,sno,ssex

from student

where sname like'刘%'

⑤涉及空值的查询

例 查询缺少成绩的学生的学号和相应的课程号

select sno,cno

from sc

where grade is NULL; //分数是空值

注意这里的“is”不能用等号(=)代替

⑥多重条件查询

例 查询计算机科学系年龄在20岁以下的学生姓名

select sname

from student

where sdept='cs'and sage<20;

3、ORDER BY子句

用户可以用ORDER BY子句对查询结果按照一个或多个属性列的升序(ASC)或降序(DESC)排列,默认值为升序

例 查询选修3号课程的学生的学号及其成绩,查询结果按分数的降序排列

select sno,grade

from sc

where cno='3'

order by grade desc;

4、聚集函数

①count()统计元组个数

例 查询学生总人数

select count(*)

from student;

②avg()计算一列值的平均值

例 计算选修1号课程的学生的平均成绩

select avg(grade)

from sc

where cno='1';

③max()求一列值中的最大值

例 查询选修1号课程的学生的最高分数

select max(grade)

from sc

where cno='1';

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。