升降序查询

降序:
select * from 表 Order by 字段 DESC

升序:
select * from 表 Order by 字段 ASC

 

 

ps:升降序查询的含义是先将表升降序再查询

原文地址:https://www.cnblogs.com/judes/p/9181557.html