oracle sql 转换成 hive sql -子查询转关联查询(七).oracle的decode改为hive的case when案例,

其他sql格式也在更新中,可直接查看这个系列,要是没有你需要的格式,可在评论或私信我

原理

oracledecode如果(a.Bonus的值是1,就显示1,如果是2,就显示2,其他就显示空
hivecase when(如果a.Bonus的值是1,就显示1,如果是2,就显示2 ,else其他就显示空)
简单的decode改case when

oracle 原sql

select 
	decode(a.Bonus, '1', '1', '2', '2', '') as Di
from 
	A a

hive 改sql

select 
	(case b.BonusFlag
		when '1' then
		'1'
		when '2' then
		'2'
		else
		'' 
	end) as Di
from 
	A a
子查询的decode改case when

oracle 原sql

select 
	decode((select Sex
		     from B b
		       where b.riskcode = a.riskcode),
		      '0',
		      '1',
		      '1',
		      '2',
		      '0') as Sex
from 
	A a

hive 改sql

select 
	(case b.Sex
		when '0' then
		'1'
		when '1' then
		'2'
		else
		'0' 
	end) as Sex,
from 
	A a
	LEFT JOIN
	B b
	on b.riskcode = a.riskcode
子查询包着decode语句改case when

需要拆开看,先看查出条件是什么,改成正常的子查询,再把值放写在case when里面

oracle 原sql

select 
	(select decode(b.mtype, '1', '1', '2', '2', '')
	     from B b
	    where b.riskcode = a.riskcode) as mType
from 
	A a

hive 改sql

select 
	(case b.mtype
		when '1' then
		'1'
		when '2' then
		'2'
		else
		'' 
	end) as MType,
from 
	A a
	LEFT JOIN
	B b
	on b.riskcode = a.riskcode
  • 1
    点赞
  • 7
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值