Oracle listagg字符串拼接字符串过长问题解决

listagg(fxwt,',') within GROUP (order by fxwt) as fxwt

改为

xmlagg(xmlparse(content fxwt||',' wellformed) order by fxwt).getclobval() as fxwt

你可能感兴趣的:(笔记)