zoukankan      html  css  js  c++  java
  • 一个数据库小题目

    写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 studentid
    from score
    where studentid in (select studentid from score where  score>65  group by studentid  having count(studentid)>=2 )
    group by studentid
    having avg(score)>60 
    )
    
  • 相关阅读:
    JS高级
    函数作用域面试题
    11.14
    11.13
    Redux知识
    react-router-dom
    react 的三大属性
    vuex
    数组的扩展
    函数作用域和 class
  • 原文地址:https://www.cnblogs.com/JuneZhang/p/2107269.html
Copyright © 2011-2022 走看看