gpt4 book ai didi

mysql - SQL ORDER BY by 内部 ORDER BY

转载 作者:行者123 更新时间:2023-11-29 07:40:14 26 4
gpt4 key购买 nike

尝试掌握 SQL

我想按日期订购,然后在其中按标题订购。

示例:

SELECT *
FROM tblboek
ORDER BY jr_van_uitgave DESC

如何在按年龄的订单中按头衔排序?

最佳答案

试试这个:

  SELECT * 
FROM tblboek
ORDER BY age, -- First order by age
title -- if ages are the same, order by title

在需要时添加DESC,例如如果您想按年龄降序排列:

  SELECT * 
FROM tblboek
ORDER BY age desc,
title

关于mysql - SQL ORDER BY by 内部 ORDER BY,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29301835/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com