Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
0

searching for multiple phrases

Enthusiast ,
Aug 23, 2006 Aug 23, 2006

Copy link to clipboard

Copied

At the moment I use Tom Muck's excellent search extension that can search on any word, all words or exact phrase.

However, I have a requirement to search on multiple phrases, eg "aviation engineer" & "technical knowledge".

Can anyone point me in the direction of how to achieve this?

Cheers,
Iain
TOPICS
Server side applications

Views

218
Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
Aug 25, 2006 Aug 25, 2006

Copy link to clipboard

Copied

LATEST
The closest I've gotten to doing this is to use the SQL :

SELECT *
FROM table_name
WHERE field_name LIKE '%search_field%'

So if the search was on 'Aviation Experience%Technical Knowledge' it would work - but only if the phrases appeared in that order, and fail otherwise.

So what I'm looking for is the ability to find the multiple phrases regardless of the order in which they appear.

Hope that makes sense, and someone can help.

Votes

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines