select b.policycode,b.casenumber,1 as total,'B1' as standard, getdate() as aa,'C' as  grade from casemessage_ys b,
policy a
where a.policycode =b.policycode and a.insuredname = b.casedriver
and b.hldtype='2' and lenth(a.insuredname)>=2 and lenth(a.insuredname)<=4
and b.isdown='0' and b.isstate='1'  and (b.link='核赔' or b.link='已决')
把条件and len(a.insuredname)>=2 and len(a.insuredname)<=4去掉的话,执行就用到索引很快,在1秒内,
但是有了LENTH之后,要执行很久。 用了LENTH就不能索引,怎么解决