在oracle中使用Decode作为like语句
我需要编写这样的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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我会使用案例陈述。像这样的东西
I'd use a case statement. Something like
如果您不想使用
case
您仍然可以使用decode
和instr
:我假设您想匹配 '1 ' 在该领域的任何地方。如果您想匹配以“1”开头的字段,那么您可以使用:
or
or
if you don't want to use
case
you can still usedecode
andinstr
: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:
or
or
使用 CASE 运算符代替 DECODE 函数进行复杂计算:
Use the CASE operator for complex evaluation instead of the DECODE function: