Created
August 16, 2016 13:31
-
-
Save sAbakumoff/20aa371d4cb1a82c3812aed138f9c6c4 to your computer and use it in GitHub Desktop.
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 | |
id, | |
FIRST(name) AS repo_name, | |
FIRST(copies) AS num_of_copies | |
FROM | |
[githubdataqueries:NpmStat.package_json_duplicates] | |
GROUP BY | |
id | |
ORDER BY | |
num_of_copies DESC |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment