concat()
1、concat(str1, str2, ...)
user表
id name 01 test
运行:select concat(id, ‘,‘, name) as info from user
结果
info 01,test
hive-sql
原文:https://www.cnblogs.com/Jomini/p/12527568.html