zoukankan      html  css  js  c++  java
  • mysql 获取学生个人科目平均分

    mysql> select * from test;
    +----+----------+-------+-----------+
    | id | name     | score | subject   |
    +----+----------+-------+-----------+
    |  1 | xiaoming |    89 | shuxue    |
    |  2 | xiaohong |    89 | shuxue    |
    |  3 | xiaohong |    80 | english   |
    |  4 | xiaohong |    80 | physics   |
    |  5 | xiaohong |    80 | astronaut |
    |  6 | xiaoming |    80 | physics   |
    |  7 | xiaoming |    80 | astronaut |
    |  8 | xiaoming |    80 | english   |
    |  9 | xiaobai  |    80 | astronaut |
    | 10 | xiaobai  |    80 | english   |
    | 11 | xiaobai  |    80 | physics   |
    | 12 | xiaobai  |    80 | shuxue    |
    | 13 | xiaohei  |    80 | astronaut |
    | 14 | xiaohei  |    80 | shuxue    |
    | 15 | xiaohei  |    80 | physics   |
    | 16 | xiaohei  |    80 | english   |
    +----+----------+-------+-----------+
    16 rows in set (0.00 sec)
    
    
    
    mysql> select name,avg(score) from test group by name;
    +----------+------------+
    | name     | avg(score) |
    +----------+------------+
    | xiaobai  |    80.0000 |
    | xiaohei  |    80.0000 |
    | xiaohong |    82.2500 |
    | xiaoming |    82.2500 |
    +----------+------------+
    4 rows in set (0.01 sec)
    
    
    
    mysql> select name,sum(score)/count(*) from test group by name;
    +----------+---------------------+
    | name     | sum(score)/count(*) |
    +----------+---------------------+
    | xiaobai  |             80.0000 |
    | xiaohei  |             80.0000 |
    | xiaohong |             82.2500 |
    | xiaoming |             82.2500 |
    +----------+---------------------+
    4 rows in set (0.00 sec)

  • 相关阅读:
    兜底方案只能用来兜底,而不能完全依靠它---记一次数据库唯一索引DuplicateKeyException异常的优化
    不注重开发细节,活该你忙!
    二叉树存储
    并查集模板
    684. 冗余连接
    820. 单词的压缩编码
    1102. 得分最高的路径
    滑动窗口模板
    古道西风“瘦马”
    西江月·凉凉
  • 原文地址:https://www.cnblogs.com/sea-stream/p/11305668.html
Copyright © 2011-2022 走看看