赞
踩
第一种方式:Like查询
select * from ucas_unit_proj t where t.unit_proj_name like'%园%';
第二种方式:使用find_in_set(subst, str), 如果包含,返回配置位置下标,否则返回0
注意:str必须以","分割
- # 无匹配, 返回值为0
- select find_in_set('3','1,2,4,6,7,8');
- #有匹配,返回匹配位置的下标
- select find_in_set('3','1,2,3,6,7,8');
- #包含多个匹配,返回首个匹配位置的下标
- select find_in_set('3','3,2,3,6,7,8');
第三种方式:使用locate(substr,str)函数,如果包含,返回1,否则返回0
- # 无匹配,返回0
- select locate('http://','www.baidu.com');
- # 有匹配,返回1
- select locate('http://','http://www.baidu.com');
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。