1. 程式人生 > >mysql 中的升序和降序

mysql 中的升序和降序

MySQL 中  排序怎麼都記不住,這裡我把它的全拼找到 了


    desc是descend 降序意思 
    asc 是ascend 升序意思
    sql = "select 表內容名    from   資料庫表名 Putout=true order by 讀取的排序表名 asc"

例如
sql = "select  *  from   user   where  Putout=true   order by time    desc"    //按最新時間來排序
sql = "select  *  from   user   where  Putout=true   order by time    asc"      //按早時間來排序