data_job/sql/dwd_before/active_df.sql

17 lines
501 B
MySQL
Raw Normal View History

2025-03-04 10:24:36 +08:00
INSERT INTO dwd.active_df(relation_id,user_id,ds,ds_date)
2025-03-06 13:46:10 +08:00
SELECT t1.relation_id
,t2.user_id
,t2.ds
2025-03-04 10:24:36 +08:00
,'${biz-date}' ds_date
2025-03-06 13:46:10 +08:00
FROM dim.game_product_relation t1
INNER JOIN pubdata_center.ods.active_account_list t2
ON t1.game_channel_id = t2.channel_id
2025-03-04 10:24:36 +08:00
AND t1.game_identity = t2.game_identity
2025-03-06 13:46:10 +08:00
AND t1.game_platform_id = t2.platform_id
2025-03-04 10:24:36 +08:00
where ds='${bizdate}'
2025-03-06 13:46:10 +08:00
GROUP BY t1.relation_id
,t2.user_id
,t2.ds
2025-03-04 10:24:36 +08:00
ON CONFLICT (relation_id, user_id, ds)
2025-03-05 17:38:20 +08:00
DO NOTHING;