网站更新内容:请访问: https://bigdata.ministep.cn/

SQL在业务中使用if存在的问题

SQL在业务中使用if存在的问题

if(true,'1','0')

在sql中 if 是非此即彼的选择,因此使用时需要注意业务问题:

举例:

判断用户是否新注册或者老注册用户

select 
tb.*
,if(t_user.user_id is not null,'新注册用户','老注册用户') as new_sign_user
from tb
left join t_user  ## 用户id是唯一性的
on tb.ds = t_user.ds
and tb.user_id = t_user.user_id

在新老注册用户是没有任何问题,因为用户只有两种属性,要么是新注册,要么是老注册,用if没有问题;

 

问题:判断新付费用户

select 
tb.*
,case when t_first_pay.from_user_id is not null and t_first_pay.ds < tb.ds then '老付费'
     when t_first_pay.from_user_id is not null and t_first_pay.ds = tb.ds then '新付费'
     else '未付费' end as new_pay_user
from tb  
left join t_trade_flow_first_type as t_first_pay ## 用户首次付费
on tb.ds = t_first_pay.ds
and tb.user_id =t_first_pay.user_id

付费用户有三种属性,老付费属性、新付费属性、未付费,因此不能再使用了if 判定,需要使用case when 进行多重判定;

 

小结

if 使用最好,但是也需要注意业务场景,穷尽业务可能性;

 

posted @ 2022-02-09 19:34  ministep88  阅读(168)  评论(0编辑  收藏  举报
网站更新内容:请访问:https://bigdata.ministep.cn/