袁来如此的工作笔记
袁来如此的工作笔记
竹杖芒鞋轻胜马,谁怕? 一蓑烟雨任平生。

charindex代替like提高sql搜索速度

浏览量:842

select id,school,department from table where charindex('关键字',content)>0

代替

select id,school,department from table where content like %string%  



charindex('关键字',content)>0代替like,提高搜索速度。


打赏