gpt4 book ai didi

sql - 自定义“排序依据”,并包含一些偏好的行?

转载 作者:行者123 更新时间:2023-12-03 18:56:27 26 4
gpt4 key购买 nike

我在表中有以下数据

pk | i | val
------------
1 | 0 | hi
2 | 3 | good bye
3 | 4 | good day
5 | 6 | howdy


如果我 select * from mytable ORDER BY val,我将得到命令2、3、1、5。

但是,如果我想在其余正常排序的行之前将“优先级”给予两个特定的行呢?假设val = hi,再见。

换句话说,我将如何编写能够返回1,5,2,3的SQL查询?

最佳答案

select *
from table1
order by case when val in ('hi', 'howdy') then 0 else 1 end, val


sql fiddle demo

要么

select *
from table1
order by
case val
when 'howdy' then 0
when 'hi' then 1
else 2
end, val


或(更容易添加新变量)

select *
from table1
order by
case val
when 'howdy' then 2
when 'hi' then 1
else 0
end desc, val

关于sql - 自定义“排序依据”,并包含一些偏好的行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18922848/

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