Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I'm looking for a string function that works like Oracle's DECODE Having table tab with a single column col

col
----
a
b
c
d

With a simple query:

select decode(col,'a',1,'b',2',9) dec from tab

I'd expect result like this:

dec
---
1
2
9
9

I haven't found any build-in function in Language Manual. Is there any UDF that can simulate DECODE?

I don't want to use case clause.

Regards
Pawel

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
2.1k views
Welcome To Ask or Share your Answers For Others

1 Answer

You could write a nested if statement.

Query:

select col
  , if(col='a', 1, if(col='b', 2, 9)) dec
from table

Output:

---------
col | dec
---------
 a     1
 b     2
 c     9
 d     9

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...