在给用户推荐表中,由于待推荐的话题数太多,所以随机抽样检测。
表
user_recs_categroy
userinfoid 用户ID
simtopicid 话题ID
select a1.userinfoid,a1.simtopicid
from (select a1.userinfoid,a1.simtopicid,row_number()over(partition by a1.userinfoid order by rand()) rn
from user_recs_categroy a1) a1
where rn<=5 limit 20;
结果显示
第一次:
2 15850
2 16024
2 16986
2 16166
2 16383
第二次:
2 17029
2 16547
2 15878
2 16044
2 15742