Skip to content

Instantly share code, notes, and snippets.

@satojkovic
Created May 14, 2012 15:07
Show Gist options
  • Save satojkovic/2694482 to your computer and use it in GitHub Desktop.
Save satojkovic/2694482 to your computer and use it in GitHub Desktop.
Github Data Challenge Example2
/* top 100 owners for Ruby by number of creates */
SELECT repository_owner, count(repository_owner) as creates
FROM [githubarchive:github.timeline]
WHERE type="CreateEvent"
AND repository_language="Ruby"
AND PARSE_UTC_USEC(created_at) >= PARSE_UTC_USEC('2012-05-01 00:00:00')
GROUP BY repository_owner
ORDER BY creates DESC
LIMIT 100
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment