I'm trying to do a keyword search in a particular column. I already have the the column/tbl added to the full-text catalog, but I'm not sure what the best approach to searching it is. I've been using:
SELECT *
FROM myTbl
WHERE Search_Column LIKE '%keyword%'
It's fast and returns good results, but it misses the words that are plural/singular or different conjugations of verbs, and few other grammatical problems.
Suggestions?
Also, I'm developing a version for distribution using VB6 and Access for distribution. I'm not very familiar with what Access has to offer as far as text searching... any suggestions there?
Thanks in advance! ----------------------------------------
Is George Lucas Kidding...
SELECT *
FROM myTbl
WHERE Search_Column LIKE '%keyword%'
It's fast and returns good results, but it misses the words that are plural/singular or different conjugations of verbs, and few other grammatical problems.
Suggestions?
Also, I'm developing a version for distribution using VB6 and Access for distribution. I'm not very familiar with what Access has to offer as far as text searching... any suggestions there?
Thanks in advance! ----------------------------------------
Is George Lucas Kidding...