关于搜索功能开发的一些猥琐技巧

in 前端 with 0 comment

遇到这样一个需求。

数据库里面存储的内容是 姜堰市市政协

然后搜索 姜堰市政协 或者 姜堰政协 可以匹配到这条记录。

不使用分词或者其它重量级解决方案的方法

select * from xxoo where title like '%姜%' and title like '%堰%' and title like '%市%' and title like '%政%' and title like '%协%'

Comments are closed.