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 avg(score) as shuxueavg from test where subject="shuxue";
    +-----------+
    | shuxueavg |
    +-----------+
    |   84.5000 |
    +-----------+
    1 row in set (0.00 sec)
    
    
    mysql> select sum(score)/count(*) as shuxueavg from test where subject="shuxue";
    +-----------+
    | shuxueavg |
    +-----------+
    |   84.5000 |
    +-----------+
    1 row in set (0.00 sec)

  • 相关阅读:
    人物装备的选取
    状压 + 背包
    村庄之间建立邮局
    woj
    括号匹配算面积(模拟)
    流程控制之if
    周末练习题(第一周)
    day04作业
    流程控制之for
    Python流程控制之while
  • 原文地址:https://www.cnblogs.com/sea-stream/p/11305702.html
Copyright © 2011-2022 走看看