Last active
August 29, 2015 14:21
-
-
Save atopal/769f19f01676a97483cf to your computer and use it in GitHub Desktop.
All English user facing active articles across all products
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`.`id`, `wiki_document`.`title` | |
FROM `wiki_document` | |
WHERE `wiki_document`.`locale` = "en-US" | |
AND `wiki_document`.`is_template` = 0 | |
AND `wiki_document`.`is_archived` = 0 | |
AND (`wiki_document`.`category` = 10 OR `wiki_document`.`category` = 20) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment