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 使用最好,但是也需要注意业务场景,穷尽业务可能性;