1. 程式人生 > >shaochengand的專欄

shaochengand的專欄


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 '%手冊'