字符串函数concat,concat_ws,group_concat,repeat(str,count)
concat(s1,s2,s3.....)讲多个字符串拼接在一起作为返回。返回结果为连接参数产生的字符串。如有任何一个参数为NULL,则返回值为NULLselectconcat('11','','12');image.png--返回结果为连接参数产生的字符串。如有任何一个参数为NULL,则返回值为NULLselectconcat('ad','',null,'00');其中有任何一个为NULL返回值