You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
select
pkg_name,
flow.slot_name as slot,
if(upper(country) rlike '^[a-z]{2}$',upper(country),'unknown') as country,
flow.load_type as load_type,
flow.succ as succ
from
bigo_ad.bigo_ad_callback_parquet_v1
lateral view explode(from_json(event_info['flows'],'array<map<string,string>>'))t1 as flow
where day = '2023-03-15' and hour = '03'
limit 10;
The text was updated successfully, but these errors were encountered: