博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
一个数据库小题目
阅读量:4970 次
发布时间:2019-06-12

本文共 500 字,大约阅读时间需要 1 分钟。

写SQL,学生表student(studentid,name)

绩表score(scoreid,studentid,score)

求出平均成绩大于60 且 至少有两门成绩高于70分的学生的编号和姓名

/*学生表student(studentid,name)绩表score(scoreid,studentid,score)求出平均成绩大于60 且 至少有两门成绩高于70分的学生的编号和姓名*/select studentid, name from student where studentid in(select studentidfrom scorewhere studentid in (select studentid from score where  score>65  group by studentid  having count(studentid)>=2 )group by studentidhaving avg(score)>60 )

转载于:https://www.cnblogs.com/JuneZhang/archive/2011/07/15/2107269.html

你可能感兴趣的文章
ASP.NET上传下载文件
查看>>
Galaxy Nexus 全屏显示-隐藏Navigation Bar
查看>>
Mob-第三方分享 /手机验证码
查看>>
Spring中使用Velocity模板
查看>>
实现model中的文件上传FTP(一)
查看>>
MonkeyRecorder
查看>>
Maven概述
查看>>
上周热点回顾(8.18-8.24)
查看>>
Feature toggle
查看>>
day02
查看>>
我是怎么招聘程序员的
查看>>
gvim 配置Pydiction
查看>>
Linux安装指定mysql版本
查看>>
Exception in thread "main" java.lang.ClassNotFoundException: 解决方法
查看>>
移动应用(手机应用)开发IM聊天程序解决方案
查看>>
[转载] K3漏油器全紫铜替换原硅胶垫教程。标准姿势
查看>>
python set
查看>>
VC中使用ADO操作数据库的方法
查看>>
如何判断域名是否被微信拦截 被已经被微信封了的的域名网址如何在微信中正常打开...
查看>>
分布式锁的三种实现方式
查看>>