gpt4 book ai didi

c# - 如何使用 C# 对 SQL Server 中的字母数字列进行排序?

转载 作者:太空宇宙 更新时间:2023-11-03 12:04:27 25 4
gpt4 key购买 nike

我有一些数据像这样存储在 SQL Server 中:

A1
A2
A3
1A
2A
3A

如何排序?

我试过这个查询:

select name
from Analyze_Table
group by name
order by CONVERT(INT, LEFT(name, PATINDEX('%[^0-9]%', name+'z')-1)),name

但这只按第一个数字和字母顺序排序,不按字母顺序和数字值排序

最佳答案

我尝试只对名称的数字部分进行排序,不包括第一个或最后一个字符。然后如果有 2 个相同的数字,他们将再次排序,例如23 和 23A。这应该会给你你正在寻找的输出

select name
from Analyze_Table
group by name
order by case
when isnumeric(name) = 1 then cast(name as int)
when isnumeric(left(name, 1)) = 0 and isnumeric(right(name, 1)) = 0 then cast(substring(name, 2, len(name)-2) as int)
when isnumeric(left(name, 1)) = 0 then cast(right(name, len(name)-1) as int)
when isnumeric(right(name, 1)) = 0 then cast(left(name, len(name)-1) as int) end
,name

关于c# - 如何使用 C# 对 SQL Server 中的字母数字列进行排序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55775443/

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