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 -------------------升序(和上面效果是一样的)
网友评论