zoukankan      html  css  js  c++  java
  • listagg wm_concat 行转列

    一、

    这个写法和wm_concat相似,
    listagg(day,',')要把哪一列转换为同一行
    within group (order by day)同一行如何排序

    with temp as
     (
     select '1月' month, '1' day from dual union all
     select '2月' month, '1' day from dual union all
     select '2月' month, '2' day from dual union all
     select '3月' month, '1' day from dual union all
     select '3月' month, '2' day from dual union all
     select '3月' month, '3' day from dual 
     )
    select 
     month,listagg(day,',')within group (order by day ) days
     from temp 
     group by month;

     

    with temp as
     (
     select '1月' month, '1' day from dual union all
     select '2月' month, '1' day from dual union all
     select '2月' month, '2' day from dual union all
     select '3月' month, '1' day from dual union all
     select '3月' month, '2' day from dual union all
     select '3月' month, '3' day from dual 
     )
    select 
       month,
       to_char(wm_concat(day))
     from temp 
    group by month;

    二、

    不使用group by

    with temp as
     (
     select '1月' month, '1' day from dual union all
     select '2月' month, '1' day from dual union all
     select '2月' month, '2' day from dual union all
     select '3月' month, '1' day from dual union all
     select '3月' month, '2' day from dual union all
     select '3月' month, '3' day from dual 
     )
    select month , 
    listagg(day,',')within group (order by day) over (partition by month) DAYS
    from temp

    with temp as
     (
     select '1月' month, '1' day from dual union all
     select '2月' month, '1' day from dual union all
     select '2月' month, '2' day from dual union all
     select '3月' month, '1' day from dual union all
     select '3月' month, '2' day from dual union all
     select '3月' month, '3' day from dual 
     )
    select *
      from (select month,
                   to_char(wm_concat(day) over(partition by month order by day)) days,
                   row_number() over(partition by month order by day desc) rn
              from temp)
     where rn = 1

  • 相关阅读:
    在 Cocos2d-x 中添加自己的微博链接
    关于屏幕适配
    [抽象工厂模式]在游戏开发中的应用
    字符串排列组合
    子矩阵最大和
    网易游戏编程题第二题
    动态规划,最大子段和
    C++的四种显示类型转换
    多线程编程
    预处理等等
  • 原文地址:https://www.cnblogs.com/-beauTiFul/p/8663575.html
Copyright © 2011-2022 走看看