• [转]Oracle 多行数据合并成一行


    原文地址:https://blog.csdn.net/u012414590/article/details/72550925

    方案一: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;



    注意:

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

  • 相关阅读:
    python实现梯度下降法
    sklearn评估模型的方法
    sklearn进行拟合
    装饰器原理-代码解释
    多进程+协程 处理IO问题
    mongodb增删改查
    关于Redis在Linux手动安装配置
    MongoDB安装配置及使用
    键盘没有小键盘怎么办?怎么打开屏幕软键盘?
    WebService中WSDL和WADL(转)
  • 原文地址:https://www.cnblogs.com/dirgo/p/12090170.html
Copyright © 2020-2023  润新知