···257257 repo_star_counts as (258258 select259259 s.repo_at,260260- count(*) as star_count260260+ count(*) as stars_gained_last_week261261 from stars s262262 join recent_starred_repos rsr on s.repo_at = rsr.repo_at263263+ where s.created >= datetime('now', '-7 days')263264 group by s.repo_at264265 )265266 select rsc.repo_at266267 from repo_star_counts rsc267267- order by rsc.star_count desc268268+ order by rsc.stars_gained_last_week desc268269 limit 8269270 `270271