函数介绍

listagg函数是Oracle 11.2 c 版本推出的,用于数据分组后将指定列数据通过间隔符号拼接,将多行转为一行显示。

实际使用

以班级为单位,查询每个班级学生(同班学生显示在一行)

select t.school_name, t.class_name, t.class_code, t.class_num,listagg(t.student_name,';') within group (order by t.student_id) as student_name from t_student_detail tgroup by t.school_name, t.class_name, t.class_code, t.class_num

其结果如下:

school_nameclass_nameclass_codeclass_numstudent_name
衡水二中一年级1班A001013张小明;李校璐;周小康
衡水二中一年级2班A001022吴世豪;安康杰
衡水二中一年级3班A001031刘小菲

函数失效场景

listagg函数拼接的字段数据类型须为varchar类型,非该数据类型的字段会出现数据为空的问题,解决方案如下:

listagg(to_char(student_id),';') within group (order by student_id)

即如果字段student_id 的数据类型是非字符串,则需要将其转换。