Oracle的wm_concat函数对应postgresql的什么函数?

//oracle的函数
wm_concat(name)   
 //pg的函数
string_agg(name, ',')

你可能感兴趣的:(sql,postgresql,oracle)