sparksql 中的concat_ws 和sort_array 和collect_list的使用方法
1.`concat_ws`函数:-`concat_ws`用于将多个字符串连接成一个以指定分隔符分隔的单个字符串。-语法:`concat_ws(separator,str1,str2,...)`-示例:```sqlSELECTconcat_ws(',','apple','banana','cherry')ASfruits;```结果将是一个字符串:"apple,banana,cherry"SELEC