当前位置:   article > 正文

Hive中的case when 的写法_hive case when

hive case when

两种方法是等价的

方法一:

case 
when t1.os = 'android' then  'android'
when t1.os = 'ios'         then  'iPhone'
else 'PC'
end as os,


方法二:

case tb1.os
when 'android'        then  ' android'
when 'ios'               then    'iPhone'
else 'PC'
end as os,
 

方法三:

case 

when t1.bc = 'android'  then  'android'

when t1.os = 'android'  then  'android'
when t1.os = 'ios'         then  'iPhone'
end as os,

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/499568
推荐阅读
相关标签
  

闽ICP备14008679号