Commit b0e50fdb authored by litaolemo's avatar litaolemo

update

parent 1bfe9f8d
......@@ -78,13 +78,13 @@ spark.sql("CREATE TEMPORARY FUNCTION json_map AS 'brickhouse.udf.json.JsonMapUDF
spark.sql("CREATE TEMPORARY FUNCTION is_json AS 'com.gmei.hive.common.udf.UDFJsonFormatCheck'")
spark.sql("CREATE TEMPORARY FUNCTION arrayMerge AS 'com.gmei.hive.common.udf.UDFArryMerge'")
ungrey_select_sql = """SELECT *,NVL(ROUND(wel_click_pv/wel_exp_pv,6),0) as meigou_ctr,
NVL(ROUND(content_click_pv/content_exp_pv,6),0) as neirong_ctr FROM pm.tl_pm_contentpage_ctr where grey_type = '非灰'"""
ungrey_select_sql = """SELECT *,NVL(ROUND(wel_click_pv/wel_exp_pv,8),0) as meigou_ctr,
NVL(ROUND(content_click_pv/content_exp_pv,8),0) as neirong_ctr FROM pm.tl_pm_contentpage_ctr where grey_type = '非灰'"""
ungrey_df = spark.sql(ungrey_select_sql)
ungrey_df.createOrReplaceTempView("ungrey")
grey_select_sql = """SELECT *,NVL(ROUND(wel_click_pv/wel_exp_pv,6),0) as grey_meigou_ctr,
NVL(ROUND(content_click_pv/content_exp_pv,6),0) as grey_neirong_ctr FROM pm.tl_pm_contentpage_ctr where grey_type = '灰度'"""
grey_select_sql = """SELECT *,NVL(ROUND(wel_click_pv/wel_exp_pv,8),0) as grey_meigou_ctr,
NVL(ROUND(content_click_pv/content_exp_pv,8),0) as grey_neirong_ctr FROM pm.tl_pm_contentpage_ctr where grey_type = '灰度'"""
grey_df = spark.sql(grey_select_sql)
grey_df.createOrReplaceTempView("grey")
......
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