模糊查询like

mysql在做多字段模糊查询的时候用的语句是

select * from tablename where concat(name,brand) like '%关键词%' 
  • 1

concat的 作用是 将多条字段拼成字符串。 
结果发现有些条目查询不出来

问题是 
concat()中有任何参数是null 则返回为空

解决办法 
1、把null的条目让他不是null 
2、concat_ws()方法 
用法:concat_ws(separator,str1,str2,…) 
以separator作为分隔符 拼接后面的参数 成为一个字符串 
有null 也无所谓 
所以我们把语句改为

select * from tablename where concat_ws("",name,brand) like '%关键词%'
  • 1

就可以查询出所有条目了,有null也ok~

 

 

 

oracle中不支持concat的三个参数的拼接,需要更正为双重concat

 

     select * from SYS_MENU where url like concat(concat('%',#{roleName}),'%')

你可能感兴趣的:(模糊查询like)