SqlServer基础语句练习
Posted 石
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SqlServer基础语句练习相关的知识,希望对你有一定的参考价值。
学了不少东西,感觉自己的sql语句还是很不好,从基础学起吧。
来一段sql脚本:
create database tongji go use tongji go create table student ( Sno varchar(20) not null primary key ,--学号 Sname varchar(20) not null,--学生姓名 Ssex varchar(20) not null, --学生性别 Sbirthday datetime,--学生出生年月 Class varchar(20)--学生所在班级 ) go create table teacher--老师 ( Tno varchar(20) not null primary key ,--教工编号(主码) Tname varchar(20) not null,--教工姓名 Tsex varchar(20) not null, --教工性别 Tbirthday datetime,--教工出生年月 Prof varchar(20),--职称 Depart varchar(20) not null--教工所在部门 ) go create table Course--课程 ( Cno varchar(20) not null primary key ,--课程号 Cname varchar(20) not null,--课程名称 Tno varchar(20) not null references teacher(Tno), --教工编号(外码) ) go create table Score--分数 ( Sno varchar(20) not null references student(Sno), --学号(外码) Cno varchar(20) not null references Course(Cno), --课程号(外码) primary key(Sno,Cno), Degree Decimal(4,1),--成绩 )
开始写练习sql语句:
-- 1.查询Student表中的所有记录的Sname、Ssex和Class列。 SELECT Sname,Ssex,Class FROM student --2.查询教师所有的单位即不重复的Depart列。 SELECT DISTINCT depart FROM teacher --3.查询Score表中成绩在60到80之间的所有记录。 SELECT * FROM Score WHERE degree BETWEEN 60 AND 80 --4.查询Score表中成绩为85,86或88的记录。 select * from Score where degree in(85,86,88) --5.查询Student表中“95031”班或性别为“女”的同学记录。 select * from student where [class] =‘95031‘ and Ssex=‘女‘ --6.以Class降序查询Student表的所有记录。 select * from student order by class desc --7.以Cno升序、Degree降序查询Score表的所有记录。 select * from Score order by cno,degree desc --8.查询“95031”班的学生人数。 select COUNT(*) from student where Class=‘95031‘ --9. 查询Score表中的最高分的学生学号和课程号。(子查询或者排序) select Sno,Cno from Score where degree=(select MAX(degree) from score) --10.查询每门课的平均成绩。 select cno,AVG(degree) from Score group by Cno --11.查询Score表中至少有5名学生选修的并以3开头的课程的平均分数。 select AVG(degree) from Score where cno like‘3%‘ group by Cno having COUNT(*)>=5 select Avg(degree) from Score group by Cno having COUNT(*)>=5 and Cno like‘3%‘ --12.查询分数大于70,小于90的Sno列。 select sno from Score where degree>70 and DEGREE<90 --13.查询所有学生的Sname、Cno和Degree列。 select sname,cno,degree from score join student on score.sno = student.sno --14.查询所有学生的Sno、Cname和Degree列。 select sno,cname,degree from score join course on score.cno=course.cno --15.查询所有学生的Sname、Cname和Degree列。 select sname,cname,degree from score join student on student.sno=score.sno join course on score.cno = course.cno select sname,cname,degree from score,student,course where student.sno=score.sno and score.cno = course.cno
以上是关于SqlServer基础语句练习的主要内容,如果未能解决你的问题,请参考以下文章