gpt4 book ai didi

mysql 按名称 asc 排序 前导 'the'

转载 作者:行者123 更新时间:2023-11-29 08:40:41 27 4
gpt4 key购买 nike

我如何按此顺序返回这些:

1: aaaa
2: bbbb
3: the cccc
4: dddd

所以忽略开头的“the”

目前我正在使用。

select * from houses order by name asc

并按此顺序返回它。

1: aaaa
2: bbbb
3: dddd
4: the cccc

谢谢

最佳答案

更正确但较慢的答案是:

ORDER BY CASE WHEN SUBSTR(name, 1, 4) = 'the ' THEN SUBSTR(name, 5) ELSE name END;

关于mysql 按名称 asc 排序 前导 'the',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13876838/

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