original_reply |
[{"entity": "Visit the Skunk Train","summary": "Nature lovers and train enthusiasts will enjoy the scenic ride through the redwoods on the historic Skunk Train."}] |
Visit the Skunk Train query |
SELECTID,post_title,(CASE WHEN post_title LIKE '%Visit%the%Skunk%Train%' THEN 10 ELSE 0 END + CASE WHEN ( SOUNDEX(post_title) LIKE SOUNDEX('Visit the Skunk Train') OR SOUNDEX(post_title) LIKE SOUNDEX('visit skunk train') ) THEN 10 ELSE 0 END + CASE WHEN post_title LIKE '%Visit%' THEN 1 ELSE 0 END + CASE WHEN post_title LIKE '%Skunk%' THEN 1 ELSE 0 END + CASE WHEN post_title LIKE '%Train%' THEN 1 ELSE 0 END) AS match_countFROM wp_postsWHEREpost_type = 'listing'AND post_status = 'publish'AND (SOUNDEX(post_title) LIKE SOUNDEX('Visit the Skunk Train')OR SOUNDEX(post_title) LIKE SOUNDEX('visit skunk train')OR (post_title LIKE '%Visit%' OR post_title LIKE '%Skunk%' OR post_title LIKE '%Train%'))HAVING match_count >= 3ORDER BY match_count DESC; |
Visit the Skunk Train |
{"post":"","summary":"Nature lovers and train enthusiasts will enjoy the scenic ride through the redwoods on the historic Skunk Train.","permalink":""} |
paragraph |
Nature lovers and train enthusiasts will enjoy the scenic ride through the redwoods on the historic Skunk Train.<br><br> |