fischadler
Programmer
I have a database containg some news articles in which I would like to make a word search. I was thinking of doing something like:
"WHERE NewsDetails LIKE '*" & SearchWord & "*';"
This should bring up all the records containing the SearchWord.
Is there a way to know how many times the search word occurs in each record and possibly sort the recordset by this value?
"WHERE NewsDetails LIKE '*" & SearchWord & "*';"
This should bring up all the records containing the SearchWord.
Is there a way to know how many times the search word occurs in each record and possibly sort the recordset by this value?