Created
August 26, 2018 15:05
-
-
Save monorkin/258cc4daeaf4dc130cbcf7c16a70f15e to your computer and use it in GitHub Desktop.
This file contains 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 licenses.license AS license, COUNT(licenses.repo_name) AS count | |
FROM [bigquery-public-data:github_repos.licenses] AS licenses | |
JOIN [bigquery-public-data:github_repos.languages] AS languages ON licenses.repo_name = languages.repo_name | |
WHERE languages.language.name = '<language name>' | |
GROUP BY license |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment