concat()函数,拉勾IT课小编为大家分解:
作用
将多个字符串连接成一个字符串
测试数据如下
# 没有分隔符
select concat (id,user_name,pwd) as temp from t_user;
# 添加分隔符
select concat (id, ',', user_name, ',', pwd) as temp from t_user;
查询多个字段需要重复输入分隔符,会跟麻烦
二.concat_ws()函数
作用和concat()一样,将多个字符串连接成一个字符串,但是可以一次性指定分隔符
(!!!--需要注意!!!个参数指定分隔符。需要注意的是分隔符不能为null,如果为null,则返回结果为null。)
select concat_ws(',', id,user_name,pwd) as temp from t_user;
三、group_concat()函数
在有group by的查询语句中,select指定的字段要么就包含在group by语句的后面,作为分组的依据,要么就包含在聚合函数中。
select gender, id, user_name from t_user group by gender;
确实根据性别分组了, 但是分组后该如何查看每个分组中数据呢?
使用 ——group_concat()
select
gender, group_concat(id) as ids, group_concat(user_name) as names
from
t_user
group by
gender;
拉勾教育Mysql 之concat语法
北京电脑/网络相关信息
11月7日
9月2日
8月13日
7月1日
6月17日
4月23日
4月19日
4月11日
4月9日
4月7日