Files
doris/regression-test/suites/github_events_p2/sql/repositoriesWithTheMaximumAmountOfIssues1.sql
2022-10-13 09:07:59 +08:00

2 lines
194 B
SQL

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