Files
doris/regression-test/suites/variant_github_events_p2/sql/whoAreAllThosePeopleGivingStars1.sql
2024-12-12 12:16:04 +08:00

2 lines
204 B
SQL

SELECT cast(v["actor"]["login"] as string), count() AS stars FROM github_events WHERE cast(v["type"] as string) = 'WatchEvent' GROUP BY cast(v["actor"]["login"] as string) ORDER BY stars DESC, 1 LIMIT 50