Files
doris/regression-test/suites/variant_github_events_p0/issuesWithTheMostComments2.sql

2 lines
200 B
SQL

SELECT cast(v["repo"]["name"] as string), count() FROM github_events WHERE cast(v["type"] as string) = 'IssueCommentEvent' GROUP BY cast(v["repo"]["name"] as string) ORDER BY count() DESC, 1 LIMIT 50