<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 排序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

                  相关文档推荐

                  Can#39;t Create Entity Data Model - using MySql and EF6(无法创建实体数据模型 - 使用 MySql 和 EF6)
                  MySQL select with CONCAT condition(MySQL选择与CONCAT条件)
                  Capitalize first letter of each word, in existing table(将现有表格中每个单词的首字母大写)
                  How to retrieve SQL result column value using column name in Python?(如何在 Python 中使用列名检索 SQL 结果列值?)
                  Update row with data from another row in the same table(使用同一表中另一行的数据更新行)
                  Exporting results of a Mysql query to excel?(将 Mysql 查询的结果导出到 excel?)
                  <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>