字符串函数concat,concat_ws,group_concat,repeat(str,count)

concat(s1,s2,s3.....) 讲多个字符串拼接在一起作为返回。

返回结果为连接参数产生的字符串。如有任何一个参数为NULL ,则返回值为 NULL

select concat('11',' ','12');

字符串函数concat,concat_ws,group_concat,repeat(str,count)_第1张图片
image.png

-- 返回结果为连接参数产生的字符串。如有任何一个参数为NULL ,则返回值为 NULL

select concat('ad',' ',null,'00');其中有任何一个为NULL返回值为null

字符串函数concat,concat_ws,group_concat,repeat(str,count)_第2张图片
image.png

-- 给 abc中间字符串间隔逗号

select concat('a',',','b',',','c',',')

字符串函数concat,concat_ws,group_concat,repeat(str,count)_第3张图片
image.png

但是这种方法比较麻烦每次都在中间加一个',',比较麻烦有不有比较简单的方式呢,concat_ws就很好的解决了这个问题。
CONCAT_WS() 代表 CONCAT With Separator(分隔符),是CONCAT()的特殊形式。第一个参数是其它参数的分隔符。分隔符的位置放在要连接的两个字符串之间。分隔符可以是一个字符串,也可以是其它参数。
注意:
如果分隔符为 NULL,则结果为 NULL。函数会忽略任何分隔符参数后的 NULL 值
concat_ws(separator,s1,s2,s3,....)separator表示分隔符他可以是字符串也可以是其他符号,如果分隔符为NULL,结果就为null。

select CONCAT_WS('_','a','b','c');

字符串函数concat,concat_ws,group_concat,repeat(str,count)_第4张图片
image.png

select concat_ws(null,'a','b','c');分隔符为null,结果返回就是null

字符串函数concat,concat_ws,group_concat,repeat(str,count)_第5张图片
image.png

CONCAT_WS()括号中有NULL不是指分隔符,就不展示null值。NULL会被忽略
select CONCAT_WS('我','a','b','c',null,'d');

字符串函数concat,concat_ws,group_concat,repeat(str,count)_第6张图片
image.png

group_concat 函数

  • 语法如下
    group_concat([DISTINCT] 要连接的字段 [Order BY 排序字段 ASC/DESC ] [Separator '分隔符'])
    如下命令创建一个表,方便练习
CREATE table group_concat(
id int(20) not null,
name VARCHAR(30) not null
)engine=innodb default charset=utf8mb4 COLLATE utf8mb4_general_ci;
-- 增加一些数据
insert into group_concat (id,name) values(1,'阿登哥'),(1,'向佳哥'),(1,'向佳哥'),(2,'向佳哥'),(3,'小润润'),(3,'陈海杰');
select * from group_concat;

解析一下,group_concat函数

group 组合的意思 concat 合拼,拼接的意思,能将相同的行组合起来.
select * from group_concat; 查询一下表信息

字符串函数concat,concat_ws,group_concat,repeat(str,count)_第7张图片
image.png

-- 1. 以id分组,把name字段的值打印在一行,逗号分隔(默认)
select id,group_concat(name) from group_concat group by id;

字符串函数concat,concat_ws,group_concat,repeat(str,count)_第8张图片
image.png

字符串函数concat,concat_ws,group_concat,repeat(str,count)_第9张图片
image.png

从上面可以清晰看出阿登哥,向佳哥,向佳哥。有重复的名字,我们可以在前面加一个dintinct 去重
select id,group_concat(distinct name) from group_concat group by id;
字符串函数concat,concat_ws,group_concat,repeat(str,count)_第10张图片
image.png

默认是逗号分隔符,我们也可以用空格分隔符,后面加个Separator '分隔符'
select id,GROUP_CONCAT(name Separator' ')from group_concat group by id;
字符串函数concat,concat_ws,group_concat,repeat(str,count)_第11张图片
image.png

也可以对字段进行排序
select id,GROUP_CONCAT(name order by name asc Separator' ')from group_concat group by id;
字符串函数concat,concat_ws,group_concat,repeat(str,count)_第12张图片
image.png

select id,GROUP_CONCAT(name order by name desc Separator' ')from group_concat group by id;

字符串函数concat,concat_ws,group_concat,repeat(str,count)_第13张图片
image.png

题目:表group_concat中有id 和 name字段
1. 找出表group_concat中name字段重复的姓名,不重复的不展示
2.找出表group_concat中name字段重复姓名的id号,并且只展示在一行中,不重复的id不显示。

解析:1.要找出重复的名字,说明这个名字不只出现一次,也就是说出现一次的名字不满足条件。统计一个数量需要用count函数 也就是要分组。我们对name分组,用having过滤大于1的就是重复人的姓名。
2.从分析1可以得到重复的名字,要得都姓名的id并写在一行,用group_concat函数就可以。 所以可以写出如下2个SQL


字符串函数concat,concat_ws,group_concat,repeat(str,count)_第14张图片
image.png

select name,count(*) as 重复次数 from group_concat group by name having 重复次数>1;

字符串函数concat,concat_ws,group_concat,repeat(str,count)_第15张图片
image.png

select name,GROUP_CONCAT(id Separator' '),COUNT(*) 次数 from group_concat group by name having 次数>1;

字符串函数concat,concat_ws,group_concat,repeat(str,count)_第16张图片
image.png

repeat(str,count)字符串连接函数

解析 repeat(字符串值,个数)。比如 repeat('abc',3)结果为3个abc连接在一起

select repeat('abc','3');

字符串函数concat,concat_ws,group_concat,repeat(str,count)_第17张图片
image.png

如果第一个字段为null则返回为null
select repeat(null,3);为null则返回为null
字符串函数concat,concat_ws,group_concat,repeat(str,count)_第18张图片
image.png

select repeat('abc',null);第2个参数为null,结果为null

字符串函数concat,concat_ws,group_concat,repeat(str,count)_第19张图片
image.png

select repeat('abc',-1);第2个为负数返回为空

image.png

select * from group_concat;


字符串函数concat,concat_ws,group_concat,repeat(str,count)_第20张图片
image.png

mysql向表中某字段后追加一段字符串:

比如给id=4,姓名为张芳 后面增加可爱的
update group_concat set name=concat(name,'可爱的') where id=4;

字符串函数concat,concat_ws,group_concat,repeat(str,count)_第21张图片
image.png

mysql 向表中某字段前加字符串

update group_concat set name=concat('非常',name) where id=4;

字符串函数concat,concat_ws,group_concat,repeat(str,count)_第22张图片
image.png

你可能感兴趣的:(字符串函数concat,concat_ws,group_concat,repeat(str,count))