符合中小企业对网站设计、功能常规化式的企业展示型网站建设
本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...
商城网站建设因基本功能的需求不同费用上面也有很大的差别...
手机微信网站开发、微信官网、微信商城网站...
原表名字: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数据多行不同列进行合并显示
select id ,listagg( name, ',' ) within group ( order by id ) as name from TABLE_NAME GROUP BY id;
单纯的select a||b肯定是错的,你得有个相同的字段才能进行合并啊
所以你得把两个表做个子查询加上一个行号,然后用两个行号做关联才行
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