Last active
September 18, 2017 14:13
-
-
Save Everettss/8c74a8275ad51a912b6fcfbe932cef89 to your computer and use it in GitHub Desktop.
Revisions
-
Everettss revised this gist
Sep 18, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ SELECT task, (count(distinct projectID) / 202808 * 100) as percent FROM [scripts] WHERE taskName = 'test' GROUP BY task -
Everettss revised this gist
Sep 18, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ SELECT task, (count(*) / 202808 * 100) as percent FROM [scripts] WHERE taskName = 'test' GROUP BY task -
Everettss created this gist
Sep 18, 2017 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ SELECT task, (count(distinct projectID) / 202808 * 100) as percent FROM [scripts] WHERE taskName = 'test' GROUP BY task ORDER BY percent DESC