如何在 Oracle 中进行模糊名称搜索?
例如:
我们的数据系统具有以下首选邮件:
Nicolas Jim Raleigh 先生
但在 Facebook 或其他搜索字段中,传递给算法的名称是:
尼克·吉姆·罗利
该过程将对所有首选名称运行搜索名称,然后返回包含最匹配字符的结果:
[ Nic ]olas Jim Raleigh先生
[尼克]k吉姆罗利
我搜索的名称的 17 个字符中有 16 个出现在首选名称中,我们可以返回排名建议。
[编辑添加]
在最初的建议和阅读Oracle 的文本查询选项之后,我在表上创建了一个索引
create index ADD_EX_INDX3 on address_extract(pref_mail_name)
indextype is ctxsys.context
parameters ('DATASTORE CTXSYS.DEFAULT_DATASTORE');
现在能够成功退休
select score(1), ae.pref_mail_name
from address_extract ae
where contains(pref_mail_name,'fuzzy(raleigh,,,weight)',1) > 0
order by score(1) desck
哪个返回
100 Mr. Raleigh H. Jameson
100 Mr. Nicolas Jim Raleigh
100 Ms. Susanne M. Raleigh
66 Mrs. LaReign Smith
66 Ms. Rahil Smith
62 Mr. Smith Ragalie
但是,我正在努力进行全名搜索。我将如何去做全名?