Files
doris/regression-test/suites/github_events_p2/sql/repositoriesWithTheMaximumAmountOfPullRequests2.sql

2 lines
191 B
SQL

SELECT repo_name, count(), count(distinct actor_login) AS u FROM github_events WHERE event_type = 'PullRequestEvent' AND action = 'opened' GROUP BY repo_name ORDER BY u DESC, 2 DESC LIMIT 50