Created
March 20, 2012 21:54
-
-
Save hobodave/2141690 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 | |
q.question_id, q.text | |
FROM survey_question q | |
JOIN survey_question_folder f1 USING(question_folder_id) | |
JOIN survey_question_folder ancestors ON f1.path LIKE CONCAT(ancestors.path, '%') | |
WHERE | |
q.text LIKE '%new%' | |
OR f1.name LIKE '%new%' | |
OR ancestors.name LIKE '%new%' | |
GROUP BY q.question_id ORDER BY NULL; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment