gpt4 book ai didi

以某种方式将月份转换为 4 个季节的 SQL 查询

转载 作者:行者123 更新时间:2023-12-05 08:42:59 25 4
gpt4 key购买 nike

我需要在 sql server 中编写一个查询,让我在我的表中注册月份,并以某种方式将这些月份转换为 4 个季节(秋季、秋季、 Spring 、夏季)。有谁知道如何做到这一点??

最佳答案

一个方法是一个案例。你的问题没有阐明逻辑,但这里有一个例子:

(case when month(date) in (12, 1, 2) then 'winter'
when month(date) in (3, 4, 5) then 'spring'
when month(date) in (6, 7, 8) then 'summer'
when month(date) in (9, 10, 11) then 'autumn'
end) as season

关于以某种方式将月份转换为 4 个季节的 SQL 查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35505063/

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