Commit 6e209dcc authored by litaolemo's avatar litaolemo

update

parent 88b18d5d
......@@ -72,12 +72,10 @@ for t in range(0, task_days):
yesterday_str = (now + datetime.timedelta(days=-1)).strftime("%Y%m%d")
one_week_age_str = (now + datetime.timedelta(days=-7)).strftime("%Y%m%d")
sql_distinct_device_id = r"""
SELECT *
FROM online.tl_hdfs_doctor_view limit 2
SELECT * FROM online.tl_hdfs_doctor_view WHERE partition_date = '20200827'
"""
print(sql_distinct_device_id)
distinct_device_id_df = spark.sql(sql_distinct_device_id)
distinct_device_id_df = spark.sql(sql_distinct_device_id,)
distinct_device_id_df.show(1)
sql_res = distinct_device_id_df.collect()
for res in sql_res:
......
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