提高模糊查询效率

xiaoxiao2021-02-28  80

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.6miu.com/read-68752.html

最新回复(0)