美文网首页
MySQL 升序降序

MySQL 升序降序

作者: 西充小凡哥 | 来源:发表于2022-06-06 14:58 被阅读0次

    MySQL排序 有时候很容易记混,我这里把他记录了下:

    desc是降序

    asc是升序(默认不写就是升序)

    MySql语句:

    1.带条件的排序

              select * from 表名 where Number=1 order by input_date desc   -------------------降序
    
              select * from 表名 where Number=1 order by input_date            -------------------升序
    
              (select  * from 表名 where Number=1 order by input_date asc  -------------------升序(和上面效果是一样的)
    

    2.不带条件的sql直接排序

                select * from 表名  order by input_date desc   -------------------降序
    
               select * from 表名 order by input_date               -------------------升序
    
              (select  * from 表名 order by input_date asc       -------------------升序(和上面效果是一样的)
    

    相关文章

      网友评论

          本文标题:MySQL 升序降序

          本文链接:https://www.haomeiwen.com/subject/czsjmrtx.html