Sql中order by多字段排序查询

作者:袖梨 2022-11-14


ORDER BY 后可加2个字段,用英文逗号隔开。

代码如下 复制代码

select a1,a2,a3 from t1 order by a1 desc ,a2 asc

下面看看其它实例

f1用升序, f2降序,sql该这样写

ORDER BY f1, f2 DESC

也可以这样写,更清楚:

ORDER BY f1 ASC, f2 DESC

如果都用降序,必须用两个desc

ORDER BY f1 DESC, f2 DESC

相关文章

精彩推荐