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