Sort MySQL results alphabetically, but with numbers last

前端 未结 3 1783
天命终不由人
天命终不由人 2020-12-10 16:55

Often, sorting is done with symbols sorted to the top, like 0 or * or &. This is the default way that mysql sorts; numbers and sy

相关标签:
3条回答
  • 2020-12-10 17:16

    This works for me:

    SELECT * FROM `yourTable` ORDER BY `yourDatabase`.`yourColumn`  ASC
    
    0 讨论(0)
  • 2020-12-10 17:23

    Based on a google-cached link to this page: http://www.google.com/url?sa=t&source=web&cd=3&ved=0CCUQFjAC&url=http%3A%2F%2Fblog.feedmarker.com%2F2006%2F02%2F01%2Fhow-to-do-natural-alpha-numeric-sort-in-mysql%2F&ei=Zg2_TZyKDaffiALjjqwo&usg=AFQjCNGS-rX7AmfrumXK8J7bVSj96bSSmQ

    EDIT: Original link is dead. Here is another link which actually explains what is happening better than the first link did:

    http://matthewturland.com/2008/11/05/natural-ordering-in-mysql/

    You might try this

    SELECT names FROM your_table ORDER BY names + 0 ASC
    
    0 讨论(0)
  • 2020-12-10 17:24
    Select ...
    From ...
    Order By Case When Col Like '[0-9]%' Then 1 Else 0 End Asc
        , Col
    

    Another solution that would account for special characters:

    Select ...
    From ...
    Order By Case When Col Like '[A-Z]%' Then 0 Else 1 End Asc
        , Col
    
    0 讨论(0)
提交回复
热议问题