在oracle中使用Decode作为like语句

发布于 2024-10-07 15:13:01 字数 279 浏览 6 评论 0原文

我需要编写这样的sql语句:

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

 FROM mapchile.segmento

但在这种情况下,当id_segmento等于'1'时,我将获得'a',即使字符串id_Segmento包含'1',我也需要它是'a',种类喜欢和喜欢的声明。

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

谢谢。

I need to write a sql statement like this:

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

 FROM mapchile.segmento

but in this case I will obtain an 'a' when id_segmento is equal to '1', I need it to be 'a' even when the string id_Segmento contains the '1', kind of like and like statment.

There is any other command like Decode that works this way?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

殤城〤 2024-10-14 15:13:01

我会使用案例陈述。像这样的东西

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

I'd use a case statement. Something like

case
   when id_segmento like '%1%' then 'a'
   else 'b'
end
毅然前行 2024-10-14 15:13:01

如果您不想使用 case 您仍然可以使用 decodeinstr

decode(instr(id_segmento,'1'),0,'b','a')

我假设您想匹配 '1 ' 在该领域的任何地方。如果您想匹配以“1”开头的字段,那么您可以使用:

decode(ascii(id_segmento),49,'a','b')

or

decode(substring(id_segmento,1,1),'1','a','b')

or

decode(instr(id_segmento,'1'),1,'a','b')

if you don't want to use case you can still use decode and instr:

decode(instr(id_segmento,'1'),0,'b','a')

I'm assuming you want to match on a '1' anywhere in the field. If you want to match on fields that start with a '1' then you could use:

decode(ascii(id_segmento),49,'a','b')

or

decode(substring(id_segmento,1,1),'1','a','b')

or

decode(instr(id_segmento,'1'),1,'a','b')
忆梦 2024-10-14 15:13:01

使用 CASE 运算符代替 DECODE 函数进行复杂计算:

SELECT id_segmento AS Segmento, 
       CASE
          WHEN id_segmento LIKE '%1%' THEN 
            'a'
          ELSE
            'b'
       END
  FROM mapchile.segmento

Use the CASE operator for complex evaluation instead of the DECODE function:

SELECT id_segmento AS Segmento, 
       CASE
          WHEN id_segmento LIKE '%1%' THEN 
            'a'
          ELSE
            'b'
       END
  FROM mapchile.segmento
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文