大家都知道concat()函数,是用来连接字符串,今天通过本文给大家介绍Mysql 模糊查询 concat()及concat的用法,感兴趣的朋友跟随微点阅读小编一起看看吧 mysql 模糊查询 concat
大家都知道concat()函数,是用来连接字符串,今天通过本文给大家介绍Mysql 模糊查询 concat()及concat的用法,感兴趣的朋友跟随微点阅读小编一起看看吧
concat() 函数,是用来连接字符串。
精确查询: select * from user where name=”zhangsan”
模糊查询; select * from user where name like “%zhang%”
在实际的使用中,条件是作为参数传递进来的。 所以我们使用 concat() 函数
1 |
|
原生sql:
1 |
|
END
concat(str1,str2,str3,str4,……….); 连接字符串函数,会生成一个字符串
功能:将多个字符串连接成一个字符串。
语法:concat(str1, str2,...)
说明:返回结果为连接参数产生的字符串,如果有任何一个参数为null,则返回值为null。
举例:select concat (id, name, score) as 别名 from 表名;
功能:和concat()一样,但是可以指定分隔符(concat_ws就是concat with separator)
语法:concat_ws(separator, str1, str2, ...)
说明:第一个参数指定分隔符。需要注意的是分隔符不能为null,如果为null,则返回结果为null。
举例:select concat ('#',id, name, score) as 别名 from 表名;
功能:将group by产生的同一个分组中的值连接起来,返回一个字符串结果。
语法:group_concat( [distinct] 要连接的字段 [order by 排序字段 asc/desc ] [separator] )
说明:通过使用distinct可以排除重复值;如果希望对结果中的值进行排序,可以使用order by子句;separator分隔符是一个字符串值,缺省为一个逗号。
举例:select name,group_concat(id order by id desc separator '#') as 别名 from 表名 group by name;
题目:查询以name分组的所有组的id和score
举例:select name,group_concat(concat_ws('-',id,score) order by id) as 别名 from 表名 group by name;
到此这篇关于mysql 模糊查询 concat()的文章就介绍到这了,更多
转载自:微点阅读 https://www.weidianyuedu.com/
来源地址:https://blog.csdn.net/weixin_45707610/article/details/131259997
--结束END--
本文标题: mysql 模糊查询 concat()的用法浅谈
本文链接: https://lsjlt.com/news/429600.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-10-23
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0