码迷,mamicode.com
首页 > 数据库 > 详细

mysql concat_ws 与 concat 多字段模糊匹配应用

时间:2018-03-05 18:14:02      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:user   rom   with   mysql   连接   userinfo   div   use   name   

有时我们希望在表中多个字段检索是否有我们给出的关键字,我们可以使用 concat_ws 和 concat 连接需要检索的字段,如:

select * from userInfo where concat(`user_name`,`email`) like %root%;

或者:

select * from userInfo where concat_ws(,,`user_name`,`email`) like %root%;

  CONCAT_WS() 代表 CONCAT With Separator ,是CONCAT()的特殊形式。但是要注意一点,如果连接的字段中有为空,那么concat会返回空串,concat_ws则不会返回空串

mysql concat_ws 与 concat 多字段模糊匹配应用

标签:user   rom   with   mysql   连接   userinfo   div   use   name   

原文地址:https://www.cnblogs.com/liang1101/p/8510023.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!