This is a short survey of Go repositories license usage on GitHub.
Queries on Google BigQuery:
See also: September, 2017 data
This is a short survey of Go repositories license usage on GitHub.
Queries on Google BigQuery:
See also: September, 2017 data
| -- https://bigquery.cloud.google.com/savedquery/921239845235:55c08a36753340b398c10a8130c2e68f | |
| SELECT | |
| COUNT(rlic.license) AS total, | |
| rlic.license | |
| FROM | |
| [bigquery-public-data:github_repos.licenses] AS rlic | |
| LEFT OUTER JOIN | |
| [bigquery-public-data:github_repos.languages] AS rlang | |
| ON | |
| rlic.repo_name = rlang.repo_name | |
| WHERE | |
| language.name == "Go" | |
| GROUP BY | |
| rlic.license | |
| ORDER BY | |
| total DESC |
| -- https://bigquery.cloud.google.com/savedquery/921239845235:fe5160b5d98f493daf65cd67d5ea0253 | |
| SELECT | |
| COUNT(rlic.license) AS total, | |
| rlic.license | |
| FROM | |
| [bigquery-public-data:github_repos.licenses] AS rlic | |
| GROUP BY | |
| rlic.license | |
| ORDER BY | |
| total DESC |