Hello,
I am trying to search my db for a string. But it should be able to match any word and not the whole phrase.
Suppose table data has text like "a b c d e f g". Then if I search for "d c b" it should be able to show the results.
field LIKE '%d c b%'
does not work like that
Can someone suggest a more robust way to search, possible showing the relevance counter also.
I do not mind using PHP also for the above, but prefer to do the search at DB level.
Thank you for your time.