Mysql全文搜索,将日期包含在排名中

Mysql全文搜索,将日期包含在排名中,mysql,Mysql,这是否可能以某种方式将日期包括在搜索排名中 更新,以展开我的问题 目前,我正在做以下工作,使用datediff的LN作为乘数为当前新闻添加权重: select title,description,full_text,created, match(title,description,full_text) against ('patient molecular')*1/LN(datediff(now(),created)) as rank from articles where match(titl

这是否可能以某种方式将日期包括在搜索排名中

更新,以展开我的问题

目前,我正在做以下工作,使用datediff的LN作为乘数为当前新闻添加权重:

select title,description,full_text,created,
match(title,description,full_text) against ('patient molecular')*1/LN(datediff(now(),created)) as rank
from articles
where match(title,description,full_text) against ('patient molecular')*1/LN(datediff(now(),created))
order by rank desc

但也许有某种方法可以用某种本地方式将日期纳入排名?

你能详细说明你的问题吗?更新。请核对:)