with t_order as ( select distinct user_id, series_id, date(pay_time) as pay_time from t_order ) select series_id, series_name, first_buyer_cnt, round(cnt1 / first_buyer_cnt, 2) as d1_rate, round(cnt2 / first_buyer_cnt, 2) as d3_rate, round(cnt3 / first_buyer_cnt, 2) as d7_rate, round(cnt4 / first_bu...