赞
踩
SELECT * FROM 表名 WHERE 字段名 like "%字符%" OR 字段名 like "%字符%";
SELECT * FROM users WHERE find_in_set('字符', 字段名);
利用mysql 字符串函数 find_in_set(),mysql有很多字符串函数 find_in_set(str1,str2)函数是返回str2中str1所在的位置索引,str2必须以","分割开。
select * from 表名 where locate(字符,字段)
select * from 表名 where position(字符 in 字段);
使用locate(字符,字段名)函数,如果包含,返回>0的数,否则返回0 ,它的别名是 position in。
select * from 表名 where INSTR(字段,字符)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。