Sql实时视频
我先给你选择题的答案。
1.D
2.B
3.A
4.C
5.B
6.A
7.A
8.C
9.D
10.C
11.C
12.D
13.C
14.A
15.B
16.A
17.C
18.D
19.A
20.C
请使用select语句实现以下查询要求。你没有提供表结构,我自己做了一些列名,你自己看着修改就行了。
1.查询评分表中带有85、86或88的记录。
select * from score where score in(85,86,88)
2.查询评分表中所有评分在60-80之间的记录。
从60到80分之间的分数中选择*
3.查询学生表中“95031”班级或“女性”的学生记录,用1表示女性。
select * from student where classid = ' 95031 ' and sex = 1
4.查询编号为“3-105”的课程的平均成绩
select avg(score)from score where course id = ' 3-105 '
5.查询所有学生的sname、cno和degree列。
从学生中选择姓名、cno、学位
6.查询老师所在的部门,也就是不重复的起程栏。
选择与教师不同的部门
7.按照cno升序和degree降序显示评分表的所有记录。
从分数中选择*
由cno asc订购,desc学位