赞
踩
1.使用通配符“%”
select * from table1 where Column1 like ‘%StevenMins%’;
2.使用contains函数
select * from table1 where contains(Column1, ‘StevenMins’);
使用contains谓词有个条件,那就是列要建立索引,也就是说如果上面语句中table1表的Column1列没有建立索引,那么就会报错,局限性比较大。
3.使用instr函数
select * from table1 where instr(Column1, ‘StevenMins’) > 0 ;
select * from table1 where instr(‘StevenMins,Steven,Mins’, Column1) > 0 ;
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。