日期:2014-05-16 浏览次数:20434 次
select * from pub_yh_bm t where instr(t.chr_bmdm,'2')>0
select * from pub_yh_bm t where t.chr_bmdm like '%2%'
select * from pub_yh_bm t where instr(t.chr_bmdm,'110101')=length(t.chr_bmdm)-length('110101')+1
select * from pub_yh_bm t where t.chr_bmdm like '%110101'
select * from pub_yh_bm t where instr(t.chr_bmdm,'11010101')=1
select * from pub_yh_bm t where t.chr_bmdm like '11010101%'