首页/应用软件/内容

mysql子查询是什么?mysql数据库子查询实际运用示例

应用软件2022-07-19 阅读()
+--------+---------+ 2 rows in set (0.00 sec)
  • 例二:各班级教师年龄及其班级及格人数(60为及格线)

    mysql> select age,
        -> (select count(*) from tb_student as s where s.class = t.class && s.score >= 60 group by class)
        -> as Count from tb_teacher as t order by Count desc;
    +------+-------+
    (北联网教程,专业提供视频软件下载)

    第1页  第2页  第3页  第4页  第5页  第6页  第7页  第8页  第9页  第10页  第11页  第12页  第13页  第14页  第15页  第16页  第17页  第18页  第19页 

    ……

  • 相关阅读