Skip to content

Instantly share code, notes, and snippets.

@mikaa123
Created January 19, 2014 16:06
Show Gist options
  • Save mikaa123/8506887 to your computer and use it in GitHub Desktop.
Save mikaa123/8506887 to your computer and use it in GitHub Desktop.
Bigquery JS Frameworks
SELECT COUNT(*)
FROM [githubarchive:github.timeline]
WHERE repository_language == "JavaScript"
AND type == "CreateEvent"
AND (
LOWER(repository_description) CONTAINS "framework" AND (
LOWER(repository_description) CONTAINS "mvc" OR
LOWER(repository_description) CONTAINS "mvvm" OR
LOWER(repository_description) CONTAINS "mvp" OR
LOWER(repository_description) CONTAINS "mv*"
)
)
AND PARSE_UTC_USEC(created_at) >= PARSE_UTC_USEC('2013-01-01 00:00:00');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment