concat()函数 concat(str1, str2,...)功能:将多个字符串连接成一个字符串 返回结果为连接参数产生的字符串,如果有任何一个参数为null,则返回值为null. 如:CONCAT(a.MinNum,'~',a.MaxNum) concat_ws()函数concat_ws(separator, str1, str2, ...)功能:和concat()一样,将多个字符串连接成一个字符串,但是可以一次性指定分隔符-(concat_ws就是concat with separato…