/***连接字符串,将两个及两个以上字符串拼接在一起:如果有一个字符串为空则返回为空****/
select concat('abc','def','ghi',null);
select concat('abc','def','ghi','vue');
/**将两个或多个字符串拼接在一起,以参数一分割开,参数为空时则不参与拼接*/
select concat_ws('x','111','222','333',null,'444');
select concat_ws('x','111','222','333','555','444');