Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.0k views
in Technique[技术] by (71.8m points)

is there any function in Hive similiar to decode in Oracle?

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...