Oracle listagg,wm_concat函数行转列结果去重Oracle 11g/19c版本
1、准备数据表2、根据学生名(stu_name)分组,学生名相同的,学生年龄(stu_age)用逗号拼接,使用listagg()函数法拼接3、上图中出现了两个12,12,实现去重3.1listagg()函数去重【方法1】使用正则表达式去重,oracle11g和oracle19c都适用selectstu_name,regexp_replace(listagg(stu_age,',')withingr