gpt4 book ai didi

oracle - 在oracle中使用Decode作为like语句

转载 作者:行者123 更新时间:2023-12-02 19:15:23 25 4
gpt4 key购买 nike

我需要写这样的sql语句:

 SELECT id_segmento AS Segmento, Decode (id_segmento ,  '1' , 'a', 'b' )

FROM mapchile.segmento

但在这种情况下,当 id_segmento 等于“1”时,我将获得“a”,即使字符串 id_Segmento 包含“1”,我也需要它为“a”,有点像类似的语句。

还有其他像 Decode 这样的命令可以这样工作吗?

谢谢。

最佳答案

我会使用 case 语句。类似的东西

case
when id_segmento like '%1%' then 'a'
else 'b'
end

关于oracle - 在oracle中使用Decode作为like语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4410066/

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