开发者

SQL Server ContainsTable not finding partial matches

开发者 https://www.devze.com 2022-12-08 17:27 出处:网络
I\'m trying to use ContainsTable to return a ranked list of results. I have it working fine when it finds a whole word match but its doesnt seem to work for partial words. For example if I search fo

I'm trying to use ContainsTable to return a ranked list of results.

I have it working fine when it finds a whole word match but its doesnt seem to work for partial words. For example if I search for 'acq' it wont find 'Acquisitions'. I really need it to work with partial matches for it to be useful. Using "Like" is not an option as the results need to be weighted.

SELECT
    TitleRanks.RANK,
    CourseId,
    CourseTitle         
FROM
    TBL_LMS_CLIENT_COURSES 开发者_运维问答as Courses
    INNER JOIN CONTAINSTABLE(Courses,CourseTitle,'acq') AS TitleRanks 
        ON Courses.CourseId = TitleRanks.[key]      

Any ideas would be great.

Thanks


Does the scenario prevent you using a prefix term in the contains clause?

 INNER JOIN CONTAINSTABLE(Courses,CourseTitle,'"acq*"') 
0

精彩评论

暂无评论...
验证码 换一张
取 消