【Oracle】LISTAGG 函数的用法

函数介绍

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 t
group by t.school_name, t.class_name, t.class_code, t.class_num

其结果如下:

school_name class_name class_code class_num student_name
衡水二中 一年级1班 A00101 3 张小明;李校璐;周小康
衡水二中 一年级2班 A00102 2 吴世豪;安康杰
衡水二中 一年级3班 A00103 1 刘小菲

函数失效场景

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

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

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

你可能感兴趣的:(笔记,技术指导,数据库)