I would like to know if there is a way to get the words that were matched from a full-text search using FREETEXT
.
For example:
SELECT *
FROM table
WHERE FREETEXT(column_name, 'search term')
I'd like to be able to see which parts of the text in column_name triggered a match with 'search term' since FREETEXT
returns records where the searched column are more than just the search term pattern matches as stated here in the FREETEXT
/FREETEXTTABLE
section.
I know that using FREETEXTTABLE
can return the rank and key but I need to know which actual terms triggered a match if it is possible.
Thanks