50个常用sql语句

建表:

--学生表tblStudent(编号StuId、姓名StuName、年龄StuAge、性别StuSex)

--课程表tblCourse(课程编号CourseId、课程名称CourseName、教师编号TeaId)

--成绩表tblScore(学生编号StuId、课程编号CourseId、成绩Score)

--教师表tblTeacher(教师编号TeaId、姓名TeaName)

问题:

1、查询“001”课程比“002”课程成绩高的所有学生的学号;

select a.StuId from (select StuId,Score from tblScore where CourseId='001') a,(select StuId,Score

from tblScore where CourseId='002') b

where a.Score>b.Score and a.StuId=b.StuId;

2、查询平均成绩大于60分的同学的学号和平均成绩;

select StuId,avg(Score)

from tblScore

group by StuId having avg(Score) >60;

3、查询所有同学的学号、姓名、选课数、总成绩;

select tblStudent.StuId,tblStudent.StuName,count(tblScore.CourseId),sum(Score)

from tblStudent left Outer join tblScore on tblStudent.StuId=tblScore.StuId

group by tblStudent.StuId,StuName

4、查询姓“李”的老师的个数;

select count(distinct(TeaName))

from tblTeacher

where TeaName like '李%';

5、查询没学过“叶平”老师课的同学的学号、姓名;

select tblStudent.StuId,tblStudent.StuName

from tblStudent

where StuId not in (select distinct( tblScore.StuId) from tblScore,tblCourse,tblTeacher where tblScore.CourseId=tblCourse.CourseId and tblTeacher.TeaId=tblCourse.TeaId and tblTeacher.TeaName='叶平');

6、查询学过“001”并且也学过编号“002”课程的同学的学号、姓名;

select tblStudent.StuId,tblStudent.StuName from tblStudent,tblScore where tblStudent.StuId=tblScore.StuId and tblScore.CourseId='001'and exists( Select * from tblScore as tblScore_2 where tblScore_2.StuId=tblScore.StuId and tblScore_2.CourseId='002');

7、查询学过“叶平”老师所教的所有课的同学的学号、姓名;

select StuId,StuName

from tblStudent

where StuId in (select StuId from tblScore ,tblCourse ,tblTeacher where tblScore.CourseId=tblCourse.CourseId and tblTeacher.TeaId=tblCourse.TeaId and tblTeacher.TeaName='叶平' group by StuId having count(tblScore.CourseId)=(select count(CourseId) from tblCourse,tblTeacher where tblTeacher.TeaId=tblCourse.TeaId and TeaName='叶平'));

8、查询课程编号“002”的成绩比课程编号“001”课程低的所有同学的学号、姓名;

Select StuId,StuName from (select tblStudent.StuId,tblStudent.StuName,Score ,(select Score from tblScore tblScore_2 where tblScore_2.StuId=tblStudent.StuId and tblScore_2.CourseId='002') Score2

from tblStudent,tblScore where tblStudent.StuId=tblScore.StuId and CourseId='001') S_2 where Score2 <Score;

9、查询所有课程成绩小于60分的同学的学号、姓名;

select StuId,StuName

from tblStudent

where StuId not in (select tblStudent.StuId from tblStudent,tblScore where S.StuId=tblScore.StuId and Score>60);

10、查询没有学全所有课的同学的学号、姓名;

select tblStudent.StuId,tblStudent.StuName

from tblStudent,tblScore

where tblStudent.StuId=tblScore.StuId group by tblStudent.StuId,tblStudent.StuName having count(CourseId) <(select count(CourseId) from tblCourse);

11、查询至少有一门课与学号为“1001”的同学所学相同的同学的学号和姓名;

select StuId,StuName from tblStudent,tblScore where tblStudent.StuId=tblScore.StuId and CourseId in select CourseId from tblScore where StuId='1001';

12、查询至少学过学号为“001”同学所有一门课的其他同学学号和姓名;

select distinct tblScore.StuId,StuName

from tblStudent,tblScore

where tblStudent.StuId=tblScore.StuId and CourseId in (select CourseId from tblScore where StuId='001');

13、把“tblScore”表中“叶平”老师教的课的成绩都更改为此课程的平均成绩;

update tblScore set Score=(select avg(tblScore_2.Score)

from tblScore tblScore_2

where tblScore_2.CourseId=tblScore.CourseId ) from tblCourse,tblTeacher where tblCourse.CourseId=tblScore.CourseId and tblCourse.TeaId=tblTeacher.TeaId and tblTeacher.TeaName='叶平');

14、查询和“1002”号的同学学习的课程完全相同的其他同学学号和姓名;

select StuId from tblScore where CourseId in (select CourseId from tblScore where StuId='1002')

group by StuId having count(*)=(select count(*) from tblScore where StuId='1002');

15、删除学习“叶平”老师课的tblScore表记录;

Delect tblScore

from tblCourse ,tblTeacher

where tblCourse.CourseId=tblScore.CourseId and tblCourse.TeaId= tblTeacher.TeaId and TeaName='叶平';

16、向tblScore表中插入一些记录,这些记录要求符合以下条件:没有上过编号“003”课程的同学学号、2、

号课的平均成绩;

Insert tblScore select StuId,'002',(Select avg(Score)

from tblScore where CourseId='002') from tblStudent where StuId not in (Select StuId from tblScore where CourseId='002');

17、按平均成绩从高到低显示所有学生的“数据库”、“企业管理”、“英语”三门的课程成绩,按如下形式显示: 学生ID,,数据库,企业管理,英语,有效课程数,有效平均分

SELECT StuId as 学生ID

,(SELECT Score FROM tblScore WHERE tblScore.StuId=t.StuId AND CourseId='004') AS 数据库

,(SELECT Score FROM tblScore WHERE tblScore.StuId=t.StuId AND CourseId='001') AS 企业管理

,(SELECT Score FROM tblScore WHERE tblScore.StuId=t.StuId AND CourseId='006') AS 英语

,COUNT(*) AS 有效课程数, AVG(t.Score) AS 平均成绩

FROM tblScore AS t

GROUP BY StuId

ORDER BY avg(t.Score)

18、查询各科成绩最高和最低的分:以如下形式显示:课程ID,最高分,最低分

SELECT L.CourseId As 课程ID,L.Score AS 最高分,R.Score AS 最低分

FROM tblScore L ,tblScore AS R

WHERE L.CourseId = R.CourseId and

L.Score = (SELECT MAX(IL.Score)

FROM tblScore AS IL,tblStudent AS IM

WHERE L.CourseId = IL.CourseId and IM.StuId=IL.StuId

GROUP BY IL.CourseId)

AND

R.Score = (SELECT MIN(IR.Score)

FROM tblScore AS IR

WHERE R.CourseId = IR.CourseId

GROUP BY IR.CourseId

);

19、按各科平均成绩从低到高和及格率的百分数从高到低顺序

SELECT t.CourseId AS 课程号,max(tblCourse.CourseName)AS 课程名,isnull(AVG(Score),0) AS 平均成绩

,100 * SUM(CASE WHEN isnull(Score,0)>=60 THEN 1 ELSE 0 END)/COUNT(*) AS 及格百分数

FROM tblScore T,tblCourse

where t.CourseId=tblCourse.CourseId

GROUP BY t.CourseId

ORDER BY 100 * SUM(CASE WHEN isnull(Score,0)>=60 THEN 1 ELSE 0 END)/COUNT(*) DESC

20、查询如下课程平均成绩和及格率的百分数(用"1行"显示): 企业管理(001),马克思(002),OO&UML (003),数据库(004)

SELECT SUM(CASE WHEN CourseId ='001' THEN Score ELSE 0 END)/SUM(CASE CourseId WHEN '001' THEN 1 ELSE 0 END) AS 企业管理平均分

,100 * SUM(CASE WHEN CourseId = '001' AND Score >= 60 THEN 1 ELSE 0 END)/SUM(CASE WHEN CourseId = '001' THEN 1 ELSE 0 END) AS 企业管理及格百分数

,SUM(CASE WHEN CourseId = '002' THEN Score ELSE 0 END)/SUM(CASE CourseId WHEN '002' THEN 1 ELSE 0 END) AS 马克思平均分

,100 * SUM(CASE WHEN CourseId = '002' AND Score >= 60 THEN 1 ELSE 0 END)/SUM(CASE WHEN CourseId = '002' THEN 1 ELSE 0 END) AS 马克思及格百分数

,SUM(CASE WHEN CourseId = '003' THEN Score ELSE 0 END)/SUM(CASE CourseId WHEN '003' THEN 1 ELSE 0 END) AS UML平均分

,100 * SUM(CASE WHEN CourseId = '003' AND Score >= 60 THEN 1 ELSE 0 END)/SUM(CASE WHEN CourseId = '003' THEN 1 ELSE 0 END) AS UML及格百分数

,SUM(CASE WHEN CourseId = '004' THEN Score ELSE 0 END)/SUM(CASE CourseId WHEN '004' THEN 1 ELSE 0 END) AS 数据库平均分

,100 * SUM(CASE WHEN CourseId = '004' AND Score >= 60 THEN 1 ELSE 0 END)/SUM(CASE WHEN CourseId = '004' THEN 1 ELSE 0 END) AS 数据库及格百分数

FROM tblScore

21、查询不同老师所教不同课程平均分从高到低显示

SELECT max(Z.TeaId) AS 教师ID,MAX(Z.TeaName) AS 教师姓名,C.CourseId AS 课程ID,MAX(C.CourseName) AS 课程名称,AVG(Score) AS 平均成绩

FROM tblScore AS T,tblCourse AS C ,tblTeacher AS Z

where T.CourseId=C.CourseId and C.TeaId=Z.TeaId

GROUP BY C.CourseId

ORDER BY AVG(Score) DESC

22、查询如下课程成绩第 3 名到第 6 名的学生成绩单:企业管理(001),马克思(002),UML (003),数据库(004)

[学生ID],[学生姓名],企业管理,马克思,UML,数据库,平均成绩

SELECT DISTINCT top 3

tblScore.StuId As 学生学号,

tblStudent.StuName AS 学生姓名 ,

T1.Score AS 企业管理,

T2.Score AS 马克思,

T3.Score AS UML,

T4.Score AS 数据库,

ISNULL(T1.Score,0) + ISNULL(T2.Score,0) + ISNULL(T3.Score,0) + ISNULL(T4.Score,0) as 总分

FROM tblStudent,tblScore LEFT JOIN tblScore AS T1

ON tblScore.StuId = T1.StuId AND T1.CourseId = '001'

LEFT JOIN tblScore AS T2

ON tblScore.StuId = T2.StuId AND T2.CourseId = '002'

LEFT JOIN tblScore AS T3

ON tblScore.StuId = T3.StuId AND T3.CourseId = '003'

LEFT JOIN tblScore AS T4

ON tblScore.StuId = T4.StuId AND T4.CourseId = '004'

WHERE tblStudent.StuId=tblScore.StuId and

ISNULL(T1.Score,0) + ISNULL(T2.Score,0) + ISNULL(T3.Score,0) + ISNULL(T4.Score,0)

NOT IN

(SELECT

DISTINCT

TOP 15 WITH TIES

ISNULL(T1.Score,0) + ISNULL(T2.Score,0) + ISNULL(T3.Score,0) + ISNULL(T4.Score,0)

FROM tblScore

LEFT JOIN tblScore AS T1

ON tblScore.StuId = T1.StuId AND T1.CourseId = 'k1'

LEFT JOIN tblScore AS T2

ON tblScore.StuId = T2.StuId AND T2.CourseId = 'k2'

LEFT JOIN tblScore AS T3

ON tblScore.StuId = T3.StuId AND T3.CourseId = 'k3'

LEFT JOIN tblScore AS T4

ON tblScore.StuId = T4.StuId AND T4.CourseId = 'k4'

ORDER BY ISNULL(T1.Score,0) + ISNULL(T2.Score,0) + ISNULL(T3.Score,0) + ISNULL(T4.Score,0) DESC);

23、统计列印各科成绩,各分数段人数:课程ID,课程名称,[100-85],[85-70],[70-60],[ <60]

SELECT tblScore.CourseId as 课程ID, CourseName as 课程名称

,SUM(CASE WHEN Score BETWEEN 85 AND 100 THEN 1 ELSE 0 END) AS [100 - 85]

,SUM(CASE WHEN Score BETWEEN 70 AND 85 THEN 1 ELSE 0 END) AS [85 - 70]

,SUM(CASE WHEN Score BETWEEN 60 AND 70 THEN 1 ELSE 0 END) AS [70 - 60]

,SUM(CASE WHEN Score < 60 THEN 1 ELSE 0 END) AS [60 -]

FROM tblScore,tblCourse

where tblScore.CourseId=tblCourse.CourseId

GROUP BY tblScore.CourseId,CourseName;

24、查询学生平均成绩及其名次

SELECT 1+(SELECT COUNT( distinct 平均成绩)

FROM (SELECT StuId,AVG(Score) AS 平均成绩

FROM tblScore

GROUP BY StuId

) AS T1

WHERE 平均成绩 > T2.平均成绩) as 名次,

StuId as 学生学号,平均成绩

FROM (SELECT StuId,AVG(Score) 平均成绩

FROM tblScore

GROUP BY StuId

) AS T2

ORDER BY 平均成绩 desc;

25、查询各科成绩前三名的记录:(不考虑成绩并列情况)

SELECT t1.StuId as 学生ID,t1.CourseId as 课程ID,Score as 分数

FROM tblScore t1

WHERE Score IN (SELECT TOP 3 Score

FROM tblScore

WHERE t1.CourseId= CourseId

ORDER BY Score DESC

)

ORDER BY t1.CourseId;

26、查询每门课程被选修的学生数

select CourseId,count(StuId) from tblScore group by CourseId;

27、查询出只选修了一门课程的全部学生的学号和姓名

select tblScore.StuId,tblStudent.StuName,count(CourseId) AS 选课数

from tblScore ,tblStudent

where tblScore.StuId=tblStudent.StuId group by tblScore.StuId ,tblStudent.StuName having count(CourseId)=1;

28、查询男生、女生人数

Select count(StuSex) as 男生人数 from tblStudent group by StuSex having StuSex='男';

Select count(StuSex) as 女生人数 from tblStudent group by StuSex having StuSex='女';

29、查询姓“张”的学生名单

SELECT StuName FROM tblStudent WHERE StuName like '张%';

30、查询同名同性学生名单,并统计同名人数

select StuName,count(*) from tblStudent group by StuName having count(*)>1;;

31、1981年出生的学生名单(注:tblStudent表中StuAge列的类型是datetime)

select StuName, CONVERT(char (11),DATEPART(year,StuAge)) as age

from tblStudent

where CONVERT(char(11),DATEPART(year,StuAge))='1981';

32、查询每门课程的平均成绩,结果按平均成绩升序排列,平均成绩相同时,按课程号降序排列

Select CourseId,Avg(Score) from tblScore group by CourseId order by Avg(Score),CourseId DESC ;

33、查询平均成绩大于85的所有学生的学号、姓名和平均成绩

select StuName,tblScore.StuId ,avg(Score)

from tblStudent,tblScore

where tblStudent.StuId=tblScore.StuId group by tblScore.StuId,StuName having avg(Score)>85;

34、查询课程名称为“数据库”,且分数低于60的学生姓名和分数

Select StuName,isnull(Score,0)

from tblStudent,tblScore,tblCourse

where tblScore.StuId=tblStudent.StuId and tblScore.CourseId=tblCourse.CourseId and tblCourse.CourseName='数据库'and Score <60;

35、查询所有学生的选课情况;

SELECT tblScore.StuId,tblScore.CourseId,StuName,CourseName

FROM tblScore,tblStudent,tblCourse

where tblScore.StuId=tblStudent.StuId and tblScore.CourseId=tblCourse.CourseId ;

36、查询任何一门课程成绩在70分以上的姓名、课程名称和分数;

SELECT distinct tblStudent.StuId,tblStudent.StuName,tblScore.CourseId,tblScore.Score

FROM tblStudent,tblScore

WHERE tblScore.Score>=70 AND tblScore.StuId=tblStudent.StuId;

37、查询不及格的课程,并按课程号从大到小排列

select CourseId from tblScore where scor e <60 order by CourseId ;

38、查询课程编号为003且课程成绩在80分以上的学生的学号和姓名;

select tblScore.StuId,tblStudent.StuName from tblScore,tblStudent where tblScore.StuId=tblStudent.StuId and Score>80 and CourseId='003';

39、求选了课程的学生人数

select count(*) from tblScore;

40、查询选修“叶平”老师所授课程的学生中,成绩最高的学生姓名及其成绩

select tblStudent.StuName,Score

from tblStudent,tblScore,tblCourse C,tblTeacher

where tblStudent.StuId=tblScore.StuId and tblScore.CourseId=C.CourseId and C.TeaId=tblTeacher.TeaId and tblTeacher.TeaName='叶平' and tblScore.Score=(select max(Score)from tblScore where CourseId=C.CourseId );

41、查询各个课程及相应的选修人数

select count(*) from tblScore group by CourseId;

42、查询不同课程成绩相同的学生的学号、课程号、学生成绩

select distinct A.StuId,B.Score from tblScore A ,tblScore B where A.Score=B.Score and A.CourseId <>B.CourseId ;

43、查询每门功成绩最好的前两名

SELECT t1.StuId as 学生ID,t1.CourseId as 课程ID,Score as 分数

FROM tblScore t1

WHERE Score IN (SELECT TOP 2 Score

FROM tblScore

WHERE t1.CourseId= CourseId

ORDER BY Score DESC

)

ORDER BY t1.CourseId;

44、统计每门课程的学生选修人数(超过10人的课程才统计)。要求输出课程号和选修人数,查询结果按人数降序排列,查询结果按人数降序排列,若人数相同,按课程号升序排列

select CourseId as 课程号,count(*) as 人数

from tblScore

group by CourseId

order by count(*) desc,CourseId

45、检索至少选修两门课程的学生学号

select StuId

from tblScore

group by StuId

having count(*) > = 2

46、查询全部学生都选修的课程的课程号和课程名

select CourseId,CourseName

from tblCourse

where CourseId in (select CourseId from tblScore group by CourseId)

47、查询没学过“叶平”老师讲授的任一门课程的学生姓名

select StuName from tblStudent where StuId not in (select StuId from tblCourse,tblTeacher,tblScore where tblCourse.TeaId=tblTeacher.TeaId and tblScore.CourseId=tblCourse.CourseId and TeaName='叶平');

48、查询两门以上不及格课程的同学的学号及其平均成绩

select StuId,avg(isnull(Score,0)) from tblScore where StuId in (select StuId from tblScore where Score <60 group by StuId having count(*)>2)group by StuId;

49、检索“004”课程分数小于60,按分数降序排列的同学学号

select StuId from tblScore where CourseId='004'and Score <60 order by Score desc;

50、删除“002”同学的“001”课程的成绩

delete from tblScore where StuId='001'and CourseId='001';

50个常用sql语句 网上流行的学生选课表的例子的更多相关文章

  1. 50个常用SQL语句

    50个常用SQL语句 Student(S#,Sname,Sage,Ssex) 学生表  S#学号,主键 Course(C#,Cname,T#) 课程表          C#课程号,主键 SC(S#, ...

  2. 学生表 课程表 成绩表 教师表 50个常用sql语句

    原文:http://www.cnblogs.com/zengxiangzhan/archive/2009/09/23/1572276.html Student(S#,Sname,Sage,Ssex) ...

  3. 网上流行的学生选课相关的50个常用sql语句

    学生表 Student(S#,Sname,Sage,Ssex) 教师表 Teacher(T#,Tname) 课程表 Course(C#,Cname,T#) 学生成绩表 SC(S#,C#,score) ...

  4. oracle常用SQL语句(汇总版)

    Oracle数据库常用sql语句 ORACLE 常用的SQL语法和数据对象一.数据控制语句 (DML) 部分 1.INSERT (往数据表里插入记录的语句) INSERT INTO 表名(字段名1, ...

  5. Oracle数据库常用Sql语句大全

    一,数据控制语句 (DML) 部分 1.INSERT  (往数据表里插入记录的语句) INSERT INTO 表名(字段名1, 字段名2, ……) VALUES ( 值1, 值2, ……); INSE ...

  6. 经典MSSQL语句大全和常用SQL语句命令的作用

    下列语句部分是Mssql语句,不可以在access中使用. SQL分类: DDL类型包括数据库.表的创建,修改,删除,声明—数据定义语言(CREATE,ALTER,DROP,DECLARE) DML类 ...

  7. oracle sqlplus及常用sql语句

    常用sql语句 有需求才有动力 http://blog.csdn.net/yitian20000/article/details/6256716 常用sql语句 创建表空间:create tables ...

  8. php面试专题---MySQL常用SQL语句优化

    php面试专题---MySQL常用SQL语句优化 一.总结 一句话总结: 原理,万变不离其宗:其实SQL语句优化的过程中,无非就是对mysql的执行计划理解,以及B+树索引的理解,其实只要我们理解执行 ...

  9. 常用SQL语句大全

    一些常用SQL语句大全   一.基础1.说明:创建数据库CREATE DATABASE database-name2.说明:删除数据库drop database dbname3.说明:备份sql se ...

随机推荐

  1. PyCharm的基本快捷键和配置简介

    快捷键 1.编辑(Editing)Ctrl + Space 基本的代码完成(类.方法.属性)Ctrl + Alt + Space 快速导入任意类Ctrl + Shift + Enter 语句完成Ctr ...

  2. centos7 常用工具包安装

    .虚拟机上传下载组件( 支持从windows直接拖拽文件,相当好用) yum -y install lrzsz rz+文件名(上传) sz+文件名(下载) .gcc (nginx之类由c语言开发的,编 ...

  3. Windows版本redis高可用方案探究

    目录 Windows版本redis高可用方案探究 前言 搭建redis主从 配置主redis-28380 配置从redis-23381 配置从redis-23382 将redis部署为服务 启动red ...

  4. 如何将一个HTML页面嵌套在另一个页面中

    一 在原页面嵌入其他页面 1.使用iframe框架 客户端页面嵌套可以使用iframe的方法,弊端是必须事先想好被嵌套的页面在首页中要占多大的位置. 如果被嵌套页面太大,超过事先定义的宽度或高度,则首 ...

  5. 时间戳转日期 mysql以及sql server 用法

    一.mysql UNIX时间戳转换为日期函数:FROM_UNIXTIME() eg:select FROM_UNIXTIME(1156219870) 结果会输出 2006-08-22 12:11:10 ...

  6. java_查找里程

    题目内容: 下图为国内主要城市之间的公路里程: 你的程序要读入这样的一张表,然后,根据输入的两个城市的名称,给出这两个城市之间的里程. 注意:任何两个城市之间的里程都已经给出,不需要计算经第三地中转. ...

  7. ubuntu安装docker以及基本用法

    ubuntu安装docker以及基本用法 一.安装 安装前先更新apt-get源到最新版本 apt-get update 使用ubuntu自带的docker安装包安装docker apt-get in ...

  8. 外机连接本机的虚拟机服务器_VM端口映射

    说明:有时候我们把服务器放在虚拟机上的时候只能本机在网页上连接,但是如果想要别的电脑也能访问的话,需要在VM上做一个映射.实现如下: 设置VM端口映射 一.打开VM->编辑->虚拟网络编辑 ...

  9. 随机生成n个不重复的数,范围是2-32,并让其在新页面打开

    var n = 5 var timer; function suiji(){ var arr = [] // 循环生成n个随机数 for(var i=0;i<n;i++){ var num = ...

  10. js之搜索框

    目标效果:点击搜索框,搜索框内提示信息消失,可输入搜索信息,点击搜索框外搜索框如果没提示信息或者为空时,显示搜索框提示信息,如果有搜索信息,显示搜索信息. 代码如下: <!DOCTYPE htm ...