Created
June 20, 2018 23:23
-
-
Save patrickkettner/eac5eeb1fe7a3fca528add918bd41e96 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 REGEXP_EXTRACT(url, r'(captainicon|octicon|typicon|entypo|mfglabsiconset|ionicons|fontawesome|icomoon)') type, count(distinct(pageid)) cnt | |
FROM [httparchive:runs.2018_01_15_requests] | |
WHERE REGEXP_MATCH(url, r'captainicon|octicon|typicon|entypo|mfglabsiconset|ionicons|fontawesome|icomoon') | |
GROUP BY type | |
ORDER BY cnt desc; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment