gpt4 book ai didi

sql - Oracle降序有异常(exception)

转载 作者:行者123 更新时间:2023-12-02 06:54:29 26 4
gpt4 key购买 nike

Select status from table where 'condition' order by status desc

返回:

T
R
P
O
N
C

是否可以将“P”始终显示在顶部,其余部分按正常降序显示?

最佳答案

Select status from table where 'condition' 
order by case when status = 'P' then 0 else 1 end, status desc

关于sql - Oracle降序有异常(exception),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34653454/

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