题解 | 推荐内容准确的用户平均评分
推荐内容准确的用户平均评分
https://www.nowcoder.com/practice/2dcac73b647247f0aef0b261ed76b47e
select avg(score) from( select distinct user_id,score from recommend_tb rt inner join user_action_tb uat on uat.user_id = rt.rec_user where hobby_L = rec_info_L) as t1