提高模糊查询效率

前端之家收集整理的这篇文章主要介绍了提高模糊查询效率前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。



instr(title,'手册')>0  相当于  title like '%手册%'


instr(title,'手册')=1  相当于  title like '手册%'


instr(title,'手册')=0  相当于  title not like '%手册%'

substr(title,length(title )-length('手册')+1,length(‘手册’))='手册'; 相当于 title like '%手册' 

原文链接:https://www.f2er.com/oracle/208521.html

猜你在找的Oracle相关文章