with t1 as(select cid,uid,count(1) as play_times from play_record_tb group by cid,uid), t2 as( select a.cid,b.release_date,round(sum(case when a.play_times>1 then a.play_times else 0 end),3) as pv from t1 a join course_info_tb b on a.cid=b.cid group by a.cid,b.release_date ), t3 as( select cid,pv...