sql 中 case when 语法使用方法

没有,用case when 来代替就行了.

例如,下面的语句显示中文年月


复制代码 代码如下:

select getdate() as 日期,case month(getdate())

when 11 then ‘十一’

when 12 then ‘十二’

else substring(‘一二三四五六七八九十’, month(getdate()),1)

end+’月’ as 月份

case 可能是 sql 中被误用最多的关键字之一。虽然你可能以前用过这个关键字来创建字段,但是它还具有更多用法。例如,你可以在 where 子句中使用 case。

首先让我们看一下 case 的语法。在一般的 select 中,其语法如下:


复制代码 代码如下:

select <mycolumnspec> =

case

when <a> then <somethinga>

when <b> then <somethingb>

else <somethinge>

end

在上面的代码中需要用具体的参数代替尖括号中的内容。下面是一个简单的例子:


复制代码 代码如下:

use pubs

go

select

title,

‘price range’ =

case

when price is null then ‘unpriced’

when price < 10 then ‘bargain’

when price between 10 and 20 then ‘average’

else ‘gift to impress relatives’

end

from titles

order by price

go

这是 case 的典型用法,但是使用 case 其实可以做更多的事情。比方说下面的 group by 子句中的 case:


复制代码 代码如下:

select ‘number of titles’, count(*)

from titles

group by

case

when price is null then ‘unpriced’

when price < 10 then ‘bargain’

when price between 10 and 20 then ‘average’

else ‘gift to impress relatives’

end

go

你甚至还可以组合这些选项,添加一个 order by 子句,如下所示:


复制代码 代码如下:

use pubs

go

select

case

when price is null then ‘unpriced’

when price < 10 then ‘bargain’

when price between 10 and 20 then ‘average’

else ‘gift to impress relatives’

end as range,

title

from titles

group by

case

when price is null then ‘unpriced’

when price < 10 then ‘bargain’

when price between 10 and 20 then ‘average’

else ‘gift to impress relatives’

end,

title

order by

case

when price is null then ‘unpriced’

when price < 10 then ‘bargain’

when price between 10 and 20 then ‘average’

else ‘gift to impress relatives’

end,

title

go

注意,为了在 group by 块中使用 case,查询语句需要在 group by 块中重复 select 块中的 case 块。

除了选择自定义字段之外,在很多情况下 case 都非常有用。再深入一步,你还可以得到你以前认为不可能得到的分组排序结果集。

(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐