SQL经典50句(后25)

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

select c#,count(S#) from sc group by C#;

27、查询出只选修了一门课程的所有学生的学号和姓名  
  
select SC.S#,Student.Sname,count(C#) AS 选课数  
  from SC ,Student  
  where SC.S#=Student.S# group by SC.S# ,Student.Sname having count(C#)=1;

28、查询男生、女生人数  
   
Select count(Ssex) as 男生人数 from Student group by Ssex having Ssex='男';  
    Select count(Ssex) as 女生人数 from Student group by Ssex having Ssex='女';
 
29、查询姓的学生名单  
   
SELECT Sname FROM Student WHERE Sname like '张%';

30、查询同名同性学生名单,并统计同名人数  
 
select Sname,count(*) from Student group by Sname having  count(*)>1;

311981年出生的学生名单(注:Student表中Sage列的类型是datetime)  
    
select Sname,  CONVERT(char (11),DATEPART(year,Sage)) as age  
    from student  
    where  CONVERT(char(11),DATEPART(year,Sage))='1981';

32、查询每门课程的平均成绩,结果按平均成绩升序排列,平均成绩相同时,按课程号降序排列  
  
Select C#,Avg(score) from SC group by C# order by Avg(score),C# DESC ;

33、查询平均成绩大于85的全部学生的学号、姓名和平均成绩  
    
select Sname,SC.S# ,avg(score)  
    from Student,SC  
    where Student.S#=SC.S# group by SC.S#,Sname having    avg(score)>85;

34、查询课程名称为数据库,且分数低于60的学生姓名和分数  
   
Select Sname,isnull(score,0)  
    from Student,SC,Course  
    where SC.S#=Student.S# and SC.C#=Course.C# and  Course.Cname='数据库'and score <60;

35、查询全部学生的选课状况;  
    
SELECT SC.S#,SC.C#,Sname,Cname  
    FROM SC,Student,Course  
    where SC.S#=Student.S# and SC.C#=Course.C# ;

36、查询任何一门课程成绩在70分以上的姓名、课程名称和分数;  
   
SELECT  distinct student.S#,student.Sname,SC.C#,SC.score  
    FROM student,Sc  
    WHERE SC.score>=70 AND SC.S#=student.S#;

37、查询不及格的课程,并按课程号从大到小排列  
    
select c# from sc where scor e <60 order by C# ;

38、查询课程编号为003且课程成绩在80分以上的学生的学号和姓名;  
  
select SC.S#,Student.Sname from SC,Student where SC.S#=Student.S# and Score>80 and C#='003';

39、求选了课程的学生人数  
    
select count(*) from sc;

40、查询选修叶平老师所授课程的学生中,成绩最高的学生姓名及其成绩  
    
select Student.Sname,score  
    from Student,SC,Course C,Teacher  
    where Student.S#=SC.S# and SC.C#=C.C# and C.T#=Teacher.T# and Teacher.Tname='叶平' and SC.score=(select max(score)from SC where C#=C.C# );

41、查询各个课程及相应的选修人数  
   
select count(*) from sc group by C#;

42、查询不一样课程成绩相同的学生的学号、课程号、学生成绩  
 
select distinct  A.S#,B.score from SC A  ,SC B where A.Score=B.Score and A.C# <>B.C# ;

43、查询每门功成绩最好的前两名  
   
SELECT t1.S# as 学生ID,t1.C# as 课程ID,Score as 分数  
      FROM SC t1  
      WHERE score IN (SELECT TOP 2 score  
              FROM SC  
              WHERE t1.C#= C#  
            ORDER BY score DESC  
              )  
      ORDER BY t1.C#;

44、统计每门课程的学生选修人数(超过10人的课程才统计)。要求输出课程号和选修人数,查询结果按人数降序排列,查询结果按人数降序排列,若人数相同,按课程号升序排列  
   
select  C# as 课程号,count(*) as 人数  
    from  sc  
    group  by  C#  
    order  by  count(*) desc,c#

45、检索至少选修两门课程的学生学号  
   
select  S#  
    from  sc  
    group  by  s#  
    having  count(*)  >  =  2

46、查询所有学生都选修的课程的课程号和课程名  
    
select  C#,Cname  
    from  Course  
    where  C#  in  (select  c#  from  sc group  by  c#)

47、查询没学过叶平老师讲授的任一门课程的学生姓名  
   
select Sname from Student where S# not in (select S# from Course,Teacher,SC where Course.T#=Teacher.T# and SC.C#=course.C# and Tname='叶平');

48、查询两门以上不及格课程的同窗的学号及其平均成绩  
    
select S#,avg(isnull(score,0)) from SC where S# in (select S# from SC where score <60 group by S# having count(*)>2)group by S#;

49、检索004课程分数小于60,按分数降序排列的同窗学号  
   
select S# from SC where C#='004'and score <60 order by score desc;

50、删除002同窗的001课程的成绩  
delete from Sc where S#='001'and C#='001';
 

补充:SQL左右链接 数据库

left join :左链接,返回左表中全部的记录以及右表中链接字段相等的记录。 c#

right join :右链接,返回右表中全部的记录以及左表中链接字段相等的记录。 spa

inner join: 内链接,又叫等值链接,只返回两个表中链接字段相等的行。 code

两个表:    class

A(id,name)    date

数据:(1,张三)(2,李四)(3,王五)    select

B(id,name)    im

数据:(1,学生)(2,老师)(4,校长)      统计

左链接结果:   

select A.*,B.* from A left join B on A.id=B.id;   

张三 1    学生   

李四 2    老师   

王五 NULL NULL  

右连接结果:   

select A.*,B.* from A right join B on A.id=B.id;   

1    张三 学生   

2    李四 老师   

NULL NULL 4 校长   

****************   

补充:下面这种状况就会用到外链接   

好比有两个表一个是用户表,一个是交易记录表,若是我要查询每一个用户的交易记录就要用到左外外链接,由于不是每一个用户都有交易记录。   

用到左外链接后,有交易记录的信息就会显示,没有的就显示NULL,就像上面我举得例子同样。   

若是不用外链接的话,好比【王五】没有交易记录的话,那么用户表里的【王五】的信息就不会显示,就失去了查询全部用户交易记录的意义了。  

相关文章
相关标签/搜索