You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Explorer] no result for question bba7e18c-b0df-448a-9aa8-dcc1fc04e87c: please tell me , the top commiter per month at kubernetes repo, since 2018.
#1581
Open
samzong opened this issue
Aug 10, 2023
· 0 comments
SELECT
DATE_FORMAT(ge.created_at, '%Y-%m') AS t_month,
gu.loginAS top_committer,
COUNT(*) AS commit_count
FROM
github_events ge
INNER JOIN github_users gu ONge.actor_id=gu.idWHEREge.repo_name='kubernetes/kubernetes'ANDge.type='PushEvent'ANDge.created_at>='2018-01-01'GROUP BY
t_month,
top_committer
ORDER BY
t_month,
commit_count DESC
Chart:
{
"chartName": "Table",
"columns": [
"Month",
"Top Committer",
"Commit Count"
],
"title": "Top Committer per Month at Kubernetes Repo since 2018"
}
Hi, I have some problems with the question bba7e18c-b0df-448a-9aa8-dcc1fc04e87c please tell me , the top commiter per month at kubernetes repo, since 2018. (errorType = none):
Generated SQL
Chart:
Result:
The text was updated successfully, but these errors were encountered: