Get word frequencies from SQL Server Full Text Search

后端 未结 2 789
刺人心
刺人心 2020-12-10 11:04

SQL Server Full-Text Search computes rank based on the frequency of the word in the document and in the set of all documents (TFIDF). Is it possible to access these values d

2条回答
  •  [愿得一人]
    2020-12-10 11:56

    I've not worked with Full-Text Search, but I have before accomplished a similar result by using a numbers table-based routine to split the input text into individual words (many examples of how to do this available elsewhere) and running aggregate functions against the results. Faster than you'd expect actually.

提交回复
热议问题