gpt4 book ai didi

mysql - SQL : using clause with "ORDER BY"

转载 作者:行者123 更新时间:2023-11-29 12:34:15 24 4
gpt4 key购买 nike

我在 SQL 表中有一个订单列表,对于每个订单,我都有一个收货国家/地区代码。

示例:

order     country_code
X00145 GB
X00178 FR
D55454 AL
E54566 GB
F59565 IE
O84849 ES
K54545 US
N61465 GB
W65478 GB

我正在尝试对输出进行排序,以便首先按字母顺序返回不属于 Country_code GB 的订单,然后将 GB 订单放在最后(就像上面示例中的 IE 和 US 之后) )。

使用“ORDER BY”只能让我使用 ASC 或 DESC 进行过滤。有没有办法将子句与“ORDER BY”一起使用? (我想不是因为我在网上找不到任何东西)?

最佳答案

对于 MySQL 你可以这样做

select * from your_table
order by country_code = 'GB',
country_code,
`order`

或者一般

select * from your_table
order by case when country_code <> 'GB' then 1 else 2 end,
country_code,
`order`

关于mysql - SQL : using clause with "ORDER BY",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27035334/

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