SQL学生课程

这篇博客介绍了SQL数据库中关于学生课程的相关信息。包括学生表Student(学号Sno、姓名Sname、性别Ssex、年龄Sage、所在系Sdept)、课程表Course(课程号Cno、课程名Cname、先行课Cpon、学分Ccredit)以及选课表SC(学号Sno、课程号Cno、分数Grade)。内容聚焦于如何进行SQL查询操作。
摘要由CSDN通过智能技术生成

1、表结构

学生表Student(学号Sno、Sname姓名、Ssex性别、Sage年龄、所在系Sdept)

课程表Course(Cno课程号、Cname课程名、Cpon先行课、Ccredit学分)

选课表SC(学号Sno、Cno课程号、Grade分数)

2、查询

 

  
   select *  from Student a
   
   select *  from   Course  b  
   select *  from   SC  c 

 
 ----查询每个学生的平均分、课程数     
 select  a.Sno ,avg(c.Grade)as 'score',COUNT(c.Cno)as 'kcnum' from  dbo.Student a
  join  
  dbo.SC c on  a.Sno=c.Sno
  group  by a.Sno
  
  
  ---查询平均分大于70的学生、课程数
   select  a.Sno ,avg(c.Grade)as 'score',COUNT(c.Cno)as 'kcnum' from  dbo.Student a
  join  
  dbo.SC c on  a.Sno=c.Sno
  group  by a.Sno
  having avg(c.Grade)>70
  
  ---查询没有学课的学生(not  in和not   EXISTS两种写法 )
  select * from   Student a where  Sno  not         in  (select Sno   from SC c   )
  
   select * from   Student a whe
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值