当前位置:   article > 正文

Hive中case when的两种语法_hive case when两种写法

hive case when两种写法

总结一下:两种表达方式是等效的

方法一:

case 
when tb1.os = 'android' then 'android'
when tb1.os = 'ios' then 'iPhone'
else 'PC'
end as os,
  • 1
  • 2
  • 3
  • 4
  • 5

方法二:

case tb1.os
when 'android' then 'android'
when 'ios' then 'iPhone'
else 'PC'
end as os,
  • 1
  • 2
  • 3
  • 4
  • 5

注意: 无论是单独使用还是结合聚合函数 sum/count(distinct)/count/max/min使用,都要写end, else条件可有可无

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

闽ICP备14008679号