mysql对查询数据进行排序
时间:2021-07-13 20:30:24
收藏:0
阅读:25
正序
select 字段 from 表名 order by 排序字段;
倒序
select 字段 from 表名 order by 排序字段 desc;
原文:https://www.cnblogs.com/lucktomato/p/15007837.html
评论(0)