• <small id='ItO3U'></small><noframes id='ItO3U'>

  • <tfoot id='ItO3U'></tfoot>

      <bdo id='ItO3U'></bdo><ul id='ItO3U'></ul>
    <legend id='ItO3U'><style id='ItO3U'><dir id='ItO3U'><q id='ItO3U'></q></dir></style></legend>
    1. <i id='ItO3U'><tr id='ItO3U'><dt id='ItO3U'><q id='ItO3U'><span id='ItO3U'><b id='ItO3U'><form id='ItO3U'><ins id='ItO3U'></ins><ul id='ItO3U'></ul><sub id='ItO3U'></sub></form><legend id='ItO3U'></legend><bdo id='ItO3U'><pre id='ItO3U'><center id='ItO3U'></center></pre></bdo></b><th id='ItO3U'></th></span></q></dt></tr></i><div id='ItO3U'><tfoot id='ItO3U'></tfoot><dl id='ItO3U'><fieldset id='ItO3U'></fieldset></dl></div>

        带有 avg 和 group by 的 SQL 查询

        SQL query with avg and group by(带有 avg 和 group by 的 SQL 查询)
          <tbody id='Ke6xr'></tbody>

          <small id='Ke6xr'></small><noframes id='Ke6xr'>

          1. <i id='Ke6xr'><tr id='Ke6xr'><dt id='Ke6xr'><q id='Ke6xr'><span id='Ke6xr'><b id='Ke6xr'><form id='Ke6xr'><ins id='Ke6xr'></ins><ul id='Ke6xr'></ul><sub id='Ke6xr'></sub></form><legend id='Ke6xr'></legend><bdo id='Ke6xr'><pre id='Ke6xr'><center id='Ke6xr'></center></pre></bdo></b><th id='Ke6xr'></th></span></q></dt></tr></i><div id='Ke6xr'><tfoot id='Ke6xr'></tfoot><dl id='Ke6xr'><fieldset id='Ke6xr'></fieldset></dl></div>

              <bdo id='Ke6xr'></bdo><ul id='Ke6xr'></ul>
              <legend id='Ke6xr'><style id='Ke6xr'><dir id='Ke6xr'><q id='Ke6xr'></q></dir></style></legend>

              • <tfoot id='Ke6xr'></tfoot>
                  本文介绍了带有 avg 和 group by 的 SQL 查询的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我在为 MySQL 编写 SQL 查询时遇到了一些问题.我有一个具有以下结构的表:

                  I have some problems with writing a SQL query for MySQL. I have a table with the following structure:

                  mysql> select id, pass, val from data_r1 limit 10;
                  +------------+--------------+----------------+
                  | id         | pass         | val            |
                  +------------+--------------+----------------+
                  | DA02959106 | 5.0000000000 |  44.4007000000 |
                  | 08A5969201 | 1.0000000000 | 182.4100000000 |
                  | 08A5969201 | 2.0000000000 | 138.7880000000 |
                  | DA02882103 | 5.0000000000 |  44.7265000000 |
                  | DA02959106 | 1.0000000000 | 186.1470000000 |
                  | DA02959106 | 2.0000000000 | 148.2660000000 |
                  | DA02959106 | 3.0000000000 | 111.9050000000 |
                  | DA02959106 | 4.0000000000 |  76.1485000000 |
                  | DA02959106 | 5.0000000000 |  44.4007000000 |
                  | DA02959106 | 4.0000000000 |  76.6485000000 |
                  

                  我想创建一个从表中提取以下信息的查询:

                  I want to create a query that extracts the following information from the table:

                  id, AVG of 'val' for 'pass' = 1, AVG of 'val' for 'pass' = 2, etc
                  

                  查询的结果应该是这样的:

                  The result of the query should look like this:

                  +------------+---------+---------+---------+---------+---------+---------+---------+
                  | id         | val_1   | val_2   | val_3   | val_4   | val_5   | val_6   | val_7   |
                  +------------+---------+---------+---------+---------+---------+---------+---------+
                  | DA02959106 | 186.147 | 148.266 | 111.905 | 76.3985 | 44.4007 | 0       | 0       |
                  +------------+---------+---------+---------+---------+---------+---------+---------+
                  

                  当然,每个唯一的id"都有更多的行.

                  with more rows for each unique 'id', of course.

                  我已经尝试了一些查询,例如

                  I already tried some queries like

                  SELECT id, pass, AVG(val) AS val_1 FROM data_r1 WHERE pass = 1 GROUP BY id;
                  

                  这将返回正确的结果,但我必须使用其他可能的pass"值(最多 7 个)的结果来扩展它

                  This returns the correct result, but I have to expand it with results for the other possible values of 'pass' (up to 7)

                  我尝试在 AVG 中使用嵌套的 SELECT 但这不起作用,因为我不知道如何正确地将其限制为当前的id".

                  I tried to use a nested SELECT within AVG but this didn't work because I didn't figure out how to correctly limit it to the current 'id'.

                  然后我创建了视图来表示pass"=1、pass"=2 等的每个查询的结果.但是对于大多数 id,pass"的最高值是 5.当使用 JOIN 查询来获取视图的最终结果我收到了一个空的结果集,因为一些视图是空的/没有特定id"的值.

                  I then created Views to represent the result of each query for 'pass' = 1, 'pass' = 2, etc. But for most ids the highest value for 'pass' is 5. When using JOIN queries to get the final result from the views I received an empty result set, because some of the Views are empty / don't have values for a specific 'id'.

                  有什么想法吗?

                  推荐答案

                  如果我明白你需要什么,试试这个:

                  If I understand what you need, try this:

                  SELECT id, pass, AVG(val) AS val_1 
                  FROM data_r1 
                  GROUP BY id, pass;
                  

                  或者,如果您只想为每个 id 分配一行,则:

                  Or, if you want just one row for every id, this:

                  SELECT d1.id,
                      (SELECT IFNULL(ROUND(AVG(d2.val), 4) ,0) FROM data_r1 d2 
                       WHERE d2.id = d1.id AND pass = 1) as val_1,
                      (SELECT IFNULL(ROUND(AVG(d2.val), 4) ,0) FROM data_r1 d2 
                       WHERE d2.id = d1.id AND pass = 2) as val_2,
                      (SELECT IFNULL(ROUND(AVG(d2.val), 4) ,0) FROM data_r1 d2 
                       WHERE d2.id = d1.id AND pass = 3) as val_3,
                      (SELECT IFNULL(ROUND(AVG(d2.val), 4) ,0) FROM data_r1 d2 
                       WHERE d2.id = d1.id AND pass = 4) as val_4,
                      (SELECT IFNULL(ROUND(AVG(d2.val), 4) ,0) FROM data_r1 d2 
                       WHERE d2.id = d1.id AND pass = 5) as val_5,
                      (SELECT IFNULL(ROUND(AVG(d2.val), 4) ,0) FROM data_r1 d2 
                       WHERE d2.id = d1.id AND pass = 6) as val_6,
                      (SELECT IFNULL(ROUND(AVG(d2.val), 4) ,0) FROM data_r1 d2 
                       WHERE d2.id = d1.id AND pass = 7) as val_7
                  from data_r1 d1
                  GROUP BY d1.id
                  

                  这篇关于带有 avg 和 group by 的 SQL 查询的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  ibtmp1是非压缩的innodb临时表的独立表空间,通过innodb_temp_data_file_path参数指定文件的路径,文件名和大小,默认配置为ibtmp1:12M:autoextend,也就是说在文件系统磁盘足够的情况下,这个文件大小是可以无限增长的。 为了避免ibtmp1文件无止境的暴涨导致
                  SQL query to group by day(按天分组的 SQL 查询)
                  What does SQL clause quot;GROUP BY 1quot; mean?(SQL 子句“GROUP BY 1是什么意思?意思是?)
                  MySQL groupwise MAX() returns unexpected results(MySQL groupwise MAX() 返回意外结果)
                  MySQL SELECT most frequent by group(MySQL SELECT 按组最频繁)
                  Include missing months in Group By query(在 Group By 查询中包含缺失的月份)

                    <bdo id='u2BsY'></bdo><ul id='u2BsY'></ul>

                      <i id='u2BsY'><tr id='u2BsY'><dt id='u2BsY'><q id='u2BsY'><span id='u2BsY'><b id='u2BsY'><form id='u2BsY'><ins id='u2BsY'></ins><ul id='u2BsY'></ul><sub id='u2BsY'></sub></form><legend id='u2BsY'></legend><bdo id='u2BsY'><pre id='u2BsY'><center id='u2BsY'></center></pre></bdo></b><th id='u2BsY'></th></span></q></dt></tr></i><div id='u2BsY'><tfoot id='u2BsY'></tfoot><dl id='u2BsY'><fieldset id='u2BsY'></fieldset></dl></div>

                    • <legend id='u2BsY'><style id='u2BsY'><dir id='u2BsY'><q id='u2BsY'></q></dir></style></legend>
                          <tfoot id='u2BsY'></tfoot>
                            <tbody id='u2BsY'></tbody>

                          <small id='u2BsY'></small><noframes id='u2BsY'>