我的表在 searchtxt 字段“Mr. johan smith”中有文本,即使用户输入任何类似的输入,我也想搜索该文本:-“mrjohan”或“mr smith”或“mr johan”或“MR.johan” "Nomatch word johan" 等。但查询结果应选择johan smith 先生的记录。我如何搜索该记录以匹配上述模式。
到目前为止,我已经尝试过这个查询: -
select t.* from temp_textsearch t
where t.searchtxt like '%UserInput%'
但是不能成功,有什么想法可以用 REGEXP 来做吗?
非常感谢 ... :)