Last active
October 11, 2015 12:17
-
-
Save mozz100/3857607 to your computer and use it in GitHub Desktop.
Search Drupal node content for a string
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 * FROM node_revisions | |
INNER JOIN node ON node.nid = node_revisions.nid | |
WHERE body LIKE '%search term%' | |
AND node.status = 1 | |
AND node_revisions.vid IN (SELECT vid FROM node WHERE status = 1) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment