正序
select 字段 from 表名 order by 排序字段;
倒序
select 字段 from 表名 order by 排序字段 desc;
mysql对查询数据进行排序
原文:https://www.cnblogs.com/lucktomato/p/15007837.html