I'm trying to determine a way to do a complex search using full-text indexing. I'm not sure if this is possible. Here's an example:I have a table with a column that I would like to index, that column contains long phrases. An example phrase is "Please help me with this full-text search question. Thanks.".What I want to do is when someone searches for something like "full-text help", I would like it to pop up with that record. What it would be doing is on top of searching for the phrase, it would strip out the text into separate words, full-text and help, and then do a search in the column for records that contain that terminology.Thanks.
↧