HosseinUntitled Query
9
1
2
3
4
5
6
7
8
›
⌄
select
repo as repository,
count(distinct id) as activities_count,
count(distinct author) as developers_count
from near.beta.github_activity
group by 1
order by developers_count desc
limit 10
Run a query to Download Data