Commit 342687e6 authored by 王志伟's avatar 王志伟

repair bug

parent 040c6ea7
...@@ -143,9 +143,9 @@ object Recommendation_strategy_all { ...@@ -143,9 +143,9 @@ object Recommendation_strategy_all {
} }
val current_all = sc.sql( val current_all = sc.sql(
s""" s"""
|select a.stat_date,a.clk_count_oldUser_experiment,a.imp_count_oldUser_experiment,b.clk_count_oldUser_all,b.imp_count_oldUser_all |select temp1.stat_date,temp1.clk_count_oldUser_experiment,temp1.imp_count_oldUser_experiment,temp2.clk_count_oldUser_all,temp2.imp_count_oldUser_all
|from temp1 a join temp2 b |from temp1 join temp2
|on a.stat_date = b.stat_date |on temp1.stat_date = temp2.stat_date
""".stripMargin """.stripMargin
) )
......
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