mysql对查询数据进行排序

正序

select 字段 from 表名 order by 排序字段;

倒序

select 字段 from 表名 order by 排序字段 desc;
原文地址:https://www.cnblogs.com/lucktomato/p/15007837.html