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

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

        <legend id='R813C'><style id='R813C'><dir id='R813C'><q id='R813C'></q></dir></style></legend>
      1. <tfoot id='R813C'></tfoot>

        ORDER BY “ENUM 字段"在 MYSQL

        ORDER BY quot;ENUM fieldquot; in MYSQL(ORDER BY “ENUM 字段在 MYSQL)

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

              <tfoot id='PVVLX'></tfoot>

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

                <tbody id='PVVLX'></tbody>
              <legend id='PVVLX'><style id='PVVLX'><dir id='PVVLX'><q id='PVVLX'></q></dir></style></legend>

              • <bdo id='PVVLX'></bdo><ul id='PVVLX'></ul>

                  本文介绍了ORDER BY “ENUM 字段"在 MYSQL的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  有一个字段 'noticeBy' enum('email','mobile','all','auto','nothing') NOT NULL DEFAULT 'auto'.众所周知,按 ENUM 字段排序是相对于其索引执行的.但是,如何按其值排序?

                  There is a field 'noticeBy' enum('email','mobile','all','auto','nothing') NOT NULL DEFAULT 'auto'. As it known ordering by ENUM field performs relative to its index. However, how it possible make order by its values?

                  推荐答案

                  如 排序:

                  ENUM 值根据它们的索引号排序,索引号取决于枚举成员在列规范中的列出顺序.例如,对于 ENUM('b', 'a')'b''a' 之前排序.空字符串排在非空字符串之前,NULL 值排在所有其他枚举值之前.

                  ENUM values are sorted based on their index numbers, which depend on the order in which the enumeration members were listed in the column specification. For example, 'b' sorts before 'a' for ENUM('b', 'a'). The empty string sorts before nonempty strings, and NULL values sort before all other enumeration values.

                  为防止在 ENUM 列上使用 ORDER BY 子句时出现意外结果,请使用以下技术之一:

                  To prevent unexpected results when using the ORDER BY clause on an ENUM column, use one of these techniques:

                  • 按字母顺序指定 ENUM 列表.

                  通过编码ORDER BY CAST(col AS CHAR)ORDER BY CONCAT(col),确保列按词法排序,而不是按索引号排序.

                  Make sure that the column is sorted lexically rather than by index number by coding ORDER BY CAST(col AS CHAR) or ORDER BY CONCAT(col).

                  根据第二个项目符号,您可以在投射后对列进行排序到一个字符串:

                  Per the second bullet, you can therefore sort on the column after it has been cast to a string:

                  ORDER BY CAST(noticeBy AS CHAR)
                  

                  这篇关于ORDER BY “ENUM 字段"在 MYSQL的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

                  相关文档推荐

                  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 查询中包含缺失的月份)
                  Why Mysql#39;s Group By and Oracle#39;s Group by behaviours are different(为什么 Mysql 的 Group By 和 Oracle 的 Group by 行为不同)
                        <tfoot id='q5E6i'></tfoot>
                        • <bdo id='q5E6i'></bdo><ul id='q5E6i'></ul>

                          <legend id='q5E6i'><style id='q5E6i'><dir id='q5E6i'><q id='q5E6i'></q></dir></style></legend>
                            <tbody id='q5E6i'></tbody>

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

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