Last active
May 22, 2017 11:52
-
-
Save atopal/945e798cfbd5d645de3dfc08937906b7 to your computer and use it in GitHub Desktop.
Number of all properly tagged English Web reference and guide pages on MDN
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 `wiki_document`.`slug` | |
FROM `wiki_document` | |
JOIN `wiki_taggeddocument` ON `wiki_taggeddocument`.`content_object_id` = `wiki_document`.`id` | |
WHERE `wiki_taggeddocument`.`tag_id`=6633 -- Guide | |
AND `wiki_document`.`locale` = "en-US" | |
AND `wiki_document`.`is_redirect`= 0 | |
AND `wiki_document`.`is_template`= 0 | |
AND `wiki_document`.`deleted`= 0 | |
AND `wiki_document`.`slug` LIKE "Web/%" |
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 `wiki_document`.`slug` | |
FROM `wiki_document` | |
JOIN `wiki_taggeddocument` ON `wiki_taggeddocument`.`content_object_id` = `wiki_document`.`id` | |
WHERE `wiki_taggeddocument`.`tag_id`=42 -- Reference | |
AND `wiki_document`.`locale` = "en-US" | |
AND `wiki_document`.`is_redirect`= 0 | |
AND `wiki_document`.`is_template`= 0 | |
AND `wiki_document`.`deleted`= 0 | |
AND `wiki_document`.`slug` LIKE "Web/%" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment