select
dt,
action,
nvl(get_json_object(ev_extends, '$.id'), '974') as id,
nvl(get_json_object(ev_extends, '$.module'), '商品浮球') as module,
nvl(get_json_object(ev_extends, '$.topicid'), '134') as topicid,
nvl( get_json_object(ev_extends, '$.name'), '11.11之家商城5折购' ) as name,
nvl(get_json_object(ev_extends, '$.biz'), '商业运营中心') as biz,
nvl(get_json_object(ev_extends, '$.bizsub'), '电商平台') as bizsub,
nvl(get_json_object(ev_extends, '$.order'), '3') as orderid,
nvl(get_json_object(ev_extends, '$.position'), '0') as position,
nvl(get_json_object(ev_extends, '$.classid'), '0') as classid,
count(distinct
case when lower(appkey) in(
'auto_android',
'auto_iphone',
'auto_ipad',
'explore_auto_iphone'
) then lower(ua_ext(useragent, 'device_id')) else cuid end
) as cuid,
count(cuid) as pv
from
fdm.fdm_cust_auto_web_common_event
where
dt = '2020-11-11'
and action in ('mofang_card_show', 'mofang_card_click')
and cur_url not like '%preview%'
and get_json_object(ev_extends, '$.topicid') = '134'
group by
dt,
action,
get_json_object(ev_extends, '$.id'),
get_json_object(ev_extends, '$.module'),
get_json_object(ev_extends, '$.topicid'),
get_json_object(ev_extends, '$.name'),
get_json_object(ev_extends, '$.biz'),
get_json_object(ev_extends, '$.bizsub'),
get_json_object(ev_extends, '$.order'),
get_json_object(ev_extends, '$.position'),
get_json_object(ev_extends, '$.classid')