Commit d0cd2f1d authored by litaolemo's avatar litaolemo

update

parent a246bcb0
......@@ -155,7 +155,7 @@ huidu_device_id_df = spark.sql(huidu_device_id_sql)
huidu_device_id_df.createOrReplaceTempView("dev_view")
sql_search_ctr = r"""
SELECT
count(1)
count(distinct (a.cl_id))
FROM
(select device_id from dev_view) t1 left join
(
......@@ -178,7 +178,7 @@ sql_search_ctr = r"""
transaction_type,
card_id,
app_session_id
)a on t1.device_id = a.cl_id group by a.device_id
)a on t1.device_id = a.cl_id
""".format(today_str='20200926')
print(sql_search_ctr)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment