zoukankan      html  css  js  c++  java
  • Oracle 多行数据合并成一行

    方案一:wm_concat函数

    select username, id, wmsys.wm_concat(subject) as subject, wmsys.wm_concat(score) as score
    from STUDENTSCORES
    group by username, id

    方案二:listagg函数

    select username, id, LISTAGG(subject, '-') within group(order by subject) as subject, LISTAGG(score, ',') within group(order by score) as score
    from STUDENTSCORES
    group by username, id

    方案三:常规sql

    select username, id, translate(ltrim(subject, '/'), '*/', '*,') as subject,translate(ltrim (score, '/'), '*/', '*,') as score
    from 
    (select row_number() over (partition by username, id order by username, id, lvl desc) as rn, username, id, subject, score
    from 
    (select username, id, level lvl,                            sys_connect_by_path (subject, '/') as subject, sys_connect_by_path (score, '/') as score
    from 
    (select username, id, subject, score,                                       row_number() over (partition by username,id order by username, id) as num from STUDENTSCORES order by username, id)
    connect by username = prior username and id = prior id and num - 1 = prior num))
    where rn = 1;

    注意:

    1. 方案一中默认分隔符为 ‘,’
    2. 方案二只适合11g之后的版本

    ————————————————
    版权声明:本文为CSDN博主「DMS程序猿」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
    原文链接:https://blog.csdn.net/u012414590/article/details/72550925

  • 相关阅读:
    博客备份小工具3
    博客转发小工具1
    04-属性选择器
    05-伪类选择器
    03-高级选择器
    02-css的选择器
    01-css的引入方式
    函数进阶-(命名空间、作用域、函数嵌套、作用域链、函数名本质、闭包)
    函数基础-(引子、定义函数、调用函数、函数返回值、函数参数)
    Python之路【第08章】:Python函数
  • 原文地址:https://www.cnblogs.com/snailgirl/p/14768361.html
Copyright © 2011-2022 走看看