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

      <legend id='DHBuJ'><style id='DHBuJ'><dir id='DHBuJ'><q id='DHBuJ'></q></dir></style></legend>

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

        按每个值的 COUNT 排序

        Order by COUNT per value(按每个值的 COUNT 排序)

        <small id='7dVVP'></small><noframes id='7dVVP'>

        <tfoot id='7dVVP'></tfoot>

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

                • 本文介绍了按每个值的 COUNT 排序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  限时送ChatGPT账号..

                  我有一张表格,其中存储了 ID 和商店所在的城市.

                  I have a table which stores IDs and the city where the store is located.

                  我想列出所有商店,从商店最多的城市中的商店开始.

                  I want to list all the stores starting with the stores that are in the city where there are the most stores.

                  表格

                  ID CITY
                  1  NYC
                  2  BOS
                  3  BOS
                  4  NYC
                  5  NYC
                  

                  我想要的输出如下,因为我在纽约市拥有最多的商店,我希望首先列出纽约市的所有位置.

                  The output I want is the following since I have the most stores in NYC, I want all the NYC location to be listed first.

                  1  NYC
                  4  NYC
                  5  NYC
                  2  BOS
                  3  BOS
                  

                  推荐答案

                  SELECT count(City), City
                  FROM table
                  GROUP BY City
                  ORDER BY count(City);
                  

                  SELECT count(City) as count, City
                  FROM table
                  GROUP BY City
                  ORDER BY count;
                  

                  啊,抱歉,我误解了你的问题.我相信 Peter Langs 的回答是正确的.

                  Ahh, sorry, I was misinterpreting your question. I believe Peter Langs answer was the correct one.

                  这篇关于按每个值的 COUNT 排序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

                  相关文档推荐

                  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 查询中包含缺失的月份)
                  <i id='PuVms'><tr id='PuVms'><dt id='PuVms'><q id='PuVms'><span id='PuVms'><b id='PuVms'><form id='PuVms'><ins id='PuVms'></ins><ul id='PuVms'></ul><sub id='PuVms'></sub></form><legend id='PuVms'></legend><bdo id='PuVms'><pre id='PuVms'><center id='PuVms'></center></pre></bdo></b><th id='PuVms'></th></span></q></dt></tr></i><div id='PuVms'><tfoot id='PuVms'></tfoot><dl id='PuVms'><fieldset id='PuVms'></fieldset></dl></div>
                  <legend id='PuVms'><style id='PuVms'><dir id='PuVms'><q id='PuVms'></q></dir></style></legend>

                  • <tfoot id='PuVms'></tfoot>
                        <tbody id='PuVms'></tbody>

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

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