gpt4 book ai didi

SQL Order By 字符串列表?

转载 作者:IT老高 更新时间:2023-10-28 23:45:29 30 4
gpt4 key购买 nike

我希望对表格进行选择并按某个关键字或关键字列表对结果进行排序。例如我有一个这样的表:

ID  Code
1 Health
2 Freeze
3 Phone
4 Phone
5 Health
6 Hot

所以不要只做一个简单的Order By asc/desc我想order by Health, Phone, Freeze, Hot .这可能吗?

最佳答案

试试这个:

select * from table 
order by FIELD(Code, 'Health', 'Phone', 'Freeze', 'Hot')

关于SQL Order By 字符串列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1244028/

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