select *
  from a, b
 where and b.usercode like '135%'
 order by a.index;
 select *
  from a, b
 where and instr(b.usercode,'135',1,1)=1
 order by a.index