,case when card_content_type in ('diary','topic') and (get_json_object(exposure_card,'$.redirect_content_type') not in ('service') or get_json_object(exposure_card,'$.redirect_content_type') is null) then '日记'
when card_content_type in ('question','answer','qa') and (get_json_object(exposure_card,'$.redirect_content_type') not in ('service') or get_json_object(exposure_card,'$.redirect_content_type') is null) then '问答'
when card_content_type in ('user_post','doctor_post') and (get_json_object(exposure_card,'$.redirect_content_type') not in ('service') or get_json_object(exposure_card,'$.redirect_content_type') is null) then '帖子'
when card_content_type in ('service') and get_json_object(exposure_card,'$.in_page_pos')!='seckill' and (get_json_object(exposure_card,'$.redirect_content_type') not in ('service') or get_json_object(exposure_card,'$.redirect_content_type') is null) then '商品'
when card_content_type in ('service') and (get_json_object(exposure_card,'$.redirect_content_type') not in ('service') or get_json_object(exposure_card,'$.redirect_content_type') is null) then '商品'
when get_json_object(exposure_card,'$.redirect_content_type')='service' then '商品评价' END as card_content_type
,case when get_json_object(exposure_card,'$.is_cpc')=1 then '是' else '否' end as is_cpc
,case when get_json_object(exposure_card,'$.redirect_content_type')='service' then get_json_object(exposure_card,'$.redirect_id') else card_id end as card_id
...
...
@@ -126,12 +126,13 @@ FROM
and tab_name='精选'
and card_type in ('card','video')
and card_content_type in ('diary','question','answer','qa','topic','user_post','doctor_post','service')
and get_json_object(exposure_card,'$.in_page_pos')!='seckill'
group by concat_ws('-',substr(partition_date,1,4),substr(partition_date,5,2),substr(partition_date,7,2))
,cl_id
,case when card_content_type in ('diary','topic') and (get_json_object(exposure_card,'$.redirect_content_type') not in ('service') or get_json_object(exposure_card,'$.redirect_content_type') is null) then '日记'
when card_content_type in ('question','answer','qa') and (get_json_object(exposure_card,'$.redirect_content_type') not in ('service') or get_json_object(exposure_card,'$.redirect_content_type') is null) then '问答'
when card_content_type in ('user_post','doctor_post') and (get_json_object(exposure_card,'$.redirect_content_type') not in ('service') or get_json_object(exposure_card,'$.redirect_content_type') is null) then '帖子'
when card_content_type in ('service') and get_json_object(exposure_card,'$.in_page_pos')!='seckill' and (get_json_object(exposure_card,'$.redirect_content_type') not in ('service') or get_json_object(exposure_card,'$.redirect_content_type') is null) then '商品'
when card_content_type in ('service') and (get_json_object(exposure_card,'$.redirect_content_type') not in ('service') or get_json_object(exposure_card,'$.redirect_content_type') is null) then '商品'
when get_json_object(exposure_card,'$.redirect_content_type')='service' then '商品评价' END
,case when get_json_object(exposure_card,'$.is_cpc')=1 then '是' else '否' end
,case when get_json_object(exposure_card,'$.redirect_content_type')='service' then get_json_object(exposure_card,'$.redirect_id') else card_id end
...
...
@@ -146,7 +147,7 @@ FROM
,case when params['card_content_type'] in ('diary','topic') and (params['redirect_content_type'] not in ('service') or params['redirect_content_type'] is null) then '日记'
when params['card_content_type'] in ('question','answer','qa') and (params['redirect_content_type'] not in ('service') or params['redirect_content_type'] is null) then '问答'
when params['card_content_type'] in ('user_post','doctor_post') and (params['redirect_content_type'] not in ('service') or params['redirect_content_type'] is null) then '帖子'
when params['card_content_type'] in ('service') and params['in_page_pos']!='seckill' and (params['redirect_content_type'] not in ('service') or params['redirect_content_type'] is null) then '商品'
when params['card_content_type'] in ('service') and (params['redirect_content_type'] not in ('service') or params['redirect_content_type'] is null) then '商品'
when params['redirect_content_type']='service' then '商品评价' END as card_content_type
,case when params['is_cpc']=1 then '是' else '否' end as is_cpc
,case when params['redirect_content_type']='service' then params['redirect_id'] else params['card_id'] end as card_id
...
...
@@ -158,12 +159,13 @@ FROM
and params['tab_name']='精选'
and params['card_type'] in ('card','video')
and params['card_content_type'] in ('diary','question','answer','qa','topic','user_post','doctor_post','service')
and params['in_page_pos']!='seckill'
group by concat_ws('-',substr(partition_date,1,4),substr(partition_date,5,2),substr(partition_date,7,2))
,cl_id
,case when params['card_content_type'] in ('diary','topic') and (params['redirect_content_type'] not in ('service') or params['redirect_content_type'] is null) then '日记'
when params['card_content_type'] in ('question','answer','qa') and (params['redirect_content_type'] not in ('service') or params['redirect_content_type'] is null) then '问答'
when params['card_content_type'] in ('user_post','doctor_post') and (params['redirect_content_type'] not in ('service') or params['redirect_content_type'] is null) then '帖子'
when params['card_content_type'] in ('service') and params['in_page_pos']!='seckill' and (params['redirect_content_type'] not in ('service') or params['redirect_content_type'] is null) then '商品'
when params['card_content_type'] in ('service') and (params['redirect_content_type'] not in ('service') or params['redirect_content_type'] is null) then '商品'
when params['redirect_content_type']='service' then '商品评价' END
,case when params['is_cpc']=1 then '是' else '否' end
,case when params['redirect_content_type']='service' then params['redirect_id'] else params['card_id'] end