我尝试在配置单元1.1.0中使用decode函数执行转换,但出现了错误。我引用了配置单元函数中的语法,但仍然从decode函数中得到错误。总是
semanticexception decode()正好需要两个参数
hive> select * from tbl_test;
OK
1 aaaa
2 bbbb
3 cccc
4 dddd
Time taken: 0.12 seconds, Fetched: 4 row(s)
hive> select decode(col1,1,'hi','hello') from tbl_test;
失败:semanticexception[error 10015]:行1:7参数长度不匹配“hello”:decode()正好需要两个参数
hive> select decode(col1,1,'hi',null) from tbl_test;
失败:semanticexception[error 10015]:行1:7参数长度不匹配“tok\u null”:decode()正好需要两个参数
hive> select decode(col1,1,'hi') from tbl_test;
失败:semanticexception[error 10015]:行1:7参数长度不匹配“hi”:decode()正好需要两个参数
hive> select decode(col1,1,'hi',"hello") from tbl_test;
失败:semanticexception[error 10015]:行1:7参数长度不匹配“hello”:decode()正好需要两个参数
1条答案
按热度按时间ujv3wf0j1#
hive中的decode函数与oracle中的decode函数不同。
使用
case
或者if
条件语句: