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

2 lines
261 B
SQL

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