Created
March 15, 2017 20:14
-
-
Save crcastle/16c82a6458c68de760c6a416d31cc329 to your computer and use it in GitHub Desktop.
Google BigQuery SQL query for yarn.lock
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 | |
repo_name, | |
COUNT(repo_name) AS count | |
FROM | |
[bigquery-public-data:github_repos.files] | |
WHERE | |
path LIKE 'yarn.lock' | |
GROUP BY | |
Repo_name |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment