Sign in
apache
/
doris
/
refs/heads/fix-null-offset-array
/
.
/
regression-test
/
suites
/
github_events_p2
/
sql
/
issuesWithTheMostComments4.sql
blob: 9072482b93b9e819b3e6ced9951ec897343d4df0 [
file
]
SELECT
repo_name
,
number
,
count
()
AS
comments
FROM
github_events
WHERE
event_type
=
'IssueCommentEvent'
AND
(
action
=
'created'
)
GROUP
BY
repo_name
,
number
ORDER
BY
comments
DESC
,
number
ASC
LIMIT
50