gpt4 book ai didi

mysql - 全文 MATCH() AGAINST() 分数的计算方式?根据表还是仅根据给定字段?

转载 作者:行者123 更新时间:2023-11-29 05:32:09 25 4
gpt4 key购买 nike

我无法在任何地方找到问题的答案。我做了一项研究,但没有任何运气。

假设我们查询以下语句:

SELECT `id`, MATCH(`name`,`content`) AGAINST ('some keywords') AS `score` FROM `pages` WHERE MATCH(`name`,`content`) AGAINST ('some keywords')

MySQL 是否会根据整个表 pages 给我一个分数,它会扫描那里的所有其他记录吗?或者在我们的案例中,仅考虑提供列(namecontent)的行就会给我一个分数。

最佳答案

是的,它也在其他行中使用关键字频率。取自MySQL Fulltext Search ,公式为:

w = (log(dtf)+1)/sumdtf * U/(1+0.0115*U) * log((N-nf)/nf)

Where:

dtf is the number of times the term appears in the document sumdtf is the sum of (log(dtf)+1)'s for all terms in the same document U
is the number of Unique terms in the document N is the total number of documents nf is the number of documents that contain the term

关于mysql - 全文 MATCH() AGAINST() 分数的计算方式?根据表还是仅根据给定字段?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13902757/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com