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

10 lines
286 B
SQL

SELECT
cast(v["actor"]["login"] as string),
count() AS c,
count(distinct cast(v["repo"]["name"] as string)) AS repos
FROM github_events
WHERE cast(v["type"] as string) = 'PushEvent'
GROUP BY cast(v["actor"]["login"] as string)
ORDER BY c DESC, 1, 3
LIMIT 50