This is more of an SQL question I guess - but the two seem to go hand in hand, and so hopefully someone can help.
At the moment I'm using Tom Muck's search extension for dreamweaver, that searches on any word, all words, or exact phrase.
However, it doesn't seem to manage multiple phrase searches.
For example, if I wanted to search on 'Aviation Experience' and 'Technical Knowledge' it would bring up results where any or all of the four keywords were found, rather than the two distinct phrases.
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.
Cheers,
Iain