Hello!
First of all, thanks in advance for your help.
We have a local database with millions of rows containing some medical terms.
It has currently such a structure:
NAME (varchar) | DESCR (TEXT)
Name field as you may guess contains name of the element etc; and description field contains texts.
Now; we want to search DESCR but search query takes so much time.
Maybe FULL-TEXT-INDEX is a solution.... But i just wanted to be sure whether any other method exists such that
NAME (varchar) | FIRST2LETTER (CHAR2)| KEYWORD (CHAR)
In this structure we insert each word of description as KEYWRD into its own row etc. Then we may have index on FIRST2LETTER and KEYWORD.
What do you advise?
Thanks again..