新网创想网站建设,新征程启航

为企业提供网站建设、域名注册、服务器等服务

oracle怎么行合并列 oracle 列合并一行

oracle查询时将两行不同的数值合并成分开的两列

原表名字:test

高密ssl适用于网站、小程序/APP、API接口等需要进行数据传输应用场景,ssl证书未来市场广阔!成为创新互联公司的ssl证书销售渠道,可以享受市场价格4-6折优惠!如果有意向欢迎电话联系或者加微信:13518219792(备注:SSL证书合作)期待与您的合作!

三个字段:姓名:nm,选修课:xx,成绩:cj

分两张情况:

一、选修科目数量确定为2:

两种写法:

1、普通写法

with t as

(select nm,

'选修' || row_number() over(partition by nm order by cj) xx_tp,

'成绩' || row_number() over(partition by nm order by cj) cj_tp,

xx,

cj

from test a)

select nm "姓名",

max(decode(xx_tp, '选修1', xx, null)) "选修1",

max(decode(cj_tp, '成绩1', cj, null)) "成绩1",

max(decode(xx_tp, '选修2', xx, null)) "选修2",

max(decode(cj_tp, '成绩2', cj, null)) "成绩2"

from t

group by nm

2、pivot

with t as

(select nm,

'选修' || row_number() over(partition by nm order by cj) xx_tp,

'成绩' || row_number() over(partition by nm order by cj) cj_tp,

xx,

cj

from test a)

select nm "姓名", max(xx1) "选修1", max(cj1) "成绩1", max(xx2) "选修2", max(cj2) "成绩2"

from (select *

from t

pivot(max(xx)

for xx_tp in('选修1' xx1, '选修2' xx2))) a

pivot (max(cj) for cj_tp in('成绩1' cj1, '成绩2' cj2))

group by nm

二、选修科目数量不确定

首先去 ;tid=1609939extra=highlight=%B6%AF%CC%AC%D0%D0%D7%AA%C1%D0page=1   复制动态行转列的代码到sql窗口中运行,然后执行如下代码:

with t as

(select *

from table(pivot('select nm,

''成绩'' || row_number() over(partition by nm order by cj) cj_tp,

cj

from test a'))),

t1 as

(select *

from table(pivot('select nm,

''选修'' || row_number() over(partition by nm order by cj) cj_tp,

xx

from test a')))

select * from t, t1 where t.nm = t1.nm

以上。

oracle数据多行不同列进行合并显示,该怎么处理

oracle数据多行不同列进行合并显示

select id ,listagg( name, ',' ) within group ( order by id ) as name from TABLE_NAME GROUP BY id;

oracle里面怎么合并两列数据

单纯的select a||b肯定是错的,你得有个相同的字段才能进行合并啊

所以你得把两个表做个子查询加上一个行号,然后用两个行号做关联才行

Oracle中多行合并为一列,具体内容请看问题补充,谢谢

select name,

max(case when course = '语文' then course else null end) course1,

max(case when course = '语文' then score else null end) score1,

max(case when course = '数学' then course else null end) course2,

max(case when course = '数学' then score else null end) score2,

max(case when course = '英语' then course else null end) course3,

max(case when course = '英语' then score else null end) score3

from table

group by name


网页名称:oracle怎么行合并列 oracle 列合并一行
网站网址:http://www.wjwzjz.com/article/hhopsi.html
在线咨询
服务热线
服务热线:028-86922220
TOP