Created
January 19, 2014 16:06
-
-
Save mikaa123/8506887 to your computer and use it in GitHub Desktop.
Bigquery JS Frameworks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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