gpt4 book ai didi

sql - 按字符串按 SQL 排序

转载 作者:行者123 更新时间:2023-12-04 05:24:14 25 4
gpt4 key购买 nike

在 SQL 中,是否可以按字符串而不是升序/降序对查询进行排序,如下所示?

Select * From people ORDER BY names (john, steve, bob, bill)

最佳答案

在标准 SQL 中,您需要一个 case陈述

Select *
From people
ORDER BY (case when names = 'john' then 1
when names = 'steve' then 2
when names = 'bob' then 3
when names = 'bill' then 4
else 5
);

一些 SQL 引擎对此有快捷方式,但您没有提及您使用的是哪个数据库。

例如,在 MySQL 中,您可以执行以下操作:
order by field(names, 'john', 'steve', 'bob', 'bill');

关于sql - 按字符串按 SQL 排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21352377/

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