sql server - T-SQL fulltext catalog search with freetext -
I have a complete text catalog for the indexed view.
Problem: I want to search with the function 'FREETEXT' All words that contain the search term but the result does not return an entry ... but an entry must be the word 'freightcosts'
< P> If the search term = 'freightcosts', then the result is 'freightcosts'?Example:
SELECT [description] dbo.vuCMSTextDe from WHERE FREETEXT ([description], 'fre')
You must use a wildcard for partial terms, such as
SELECT [description] FROM dbo .vuCmsTextDe WHERE FREETEXT ([description], 'fre *')
Comments
Post a Comment