Sign in
apache
/
doris
/
refs/heads/fix-null-offset-array
/
.
/
regression-test
/
suites
/
github_events_p2
/
sql
/
whoAreAllThosePeopleGivingStars2.sql
blob: 7ae2b57b3bdf6be16da253df175b81663dae47c3 [
file
]
SELECT
actor_login
,
count
()
AS
stars
FROM
github_events
WHERE
event_type
=
'WatchEvent'
AND
actor_login
=
'alexey-milovidov'
GROUP
BY
actor_login
ORDER
BY
stars
DESC
LIMIT
50