oracle怎么把一个字段根据不同的条件拆分成多列展现

表Anametype1A1B1A1C拆分后变成name1type1name2type2name3type31A1B1C1A... 表A
name type
1 A
1 B
1 A
1 C

拆分后变成
name1 type1 name2 type2 name3 type3
1 A 1 B 1 C
1 A
展开
 我来答
小狂中E
推荐于2018-02-28 · TA获得超过1418个赞
知道大有可为答主
回答量:1514
采纳率:66%
帮助的人:1025万
展开全部
with t as (select a.name, a.type, row_number() over(partition by type order by name) r from a)
select max(case when type='A' then name end) name1, 'A' type1,
max(case when type='B' then name end) name2, 'B' type2,
max(case when type='C' then name end) name3, 'C' type3
from t
group by r
追问
ORA-32039:递归WITH子句必须具有列别名列表
报错呀
追答
没报错呀
with a as (select 1 name, 'A' type from dual
union all select 1, 'B' from dual
union all select 1, 'A' from dual
union all select 1, 'C' from dual),
t as (select a.name, a.type, row_number() over(partition by type order by name) r from a)
select max(case when type='A' then name end) name1, max(case when type='A' then type end) type1,
max(case when type='B' then name end) name2, max(case when type='B' then type end) type2,
max(case when type='C' then name end) name3, max(case when type='C' then type end) type3
from t
group by r
哪来的递归?
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
空空城旧念
2013-12-16 · 超过11用户采纳过TA的回答
知道答主
回答量:21
采纳率:0%
帮助的人:14.4万
展开全部
你直接加 where 条件不就可以啦 :form 表A where type ="A"
追问
那只查了一列,其余的几列怎么办
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
天虹2010
2013-12-16 · TA获得超过164个赞
知道小有建树答主
回答量:284
采纳率:100%
帮助的人:134万
展开全部
用decode函数可以
追问
怎么弄呢?
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
玄霄xuanxiao
2018-12-02
知道答主
回答量:1
采纳率:0%
帮助的人:797
展开全部
你的with t(列名)as
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
renfengjun1986
2013-12-16 · 知道合伙人软件行家
renfengjun1986
知道合伙人软件行家
采纳数:925 获赞数:1553
中国地质调查局特聘数据库专家 CSDN博客专家 百度知道数据库行家 炼数成金版主 想了解更多请关注我的博客:

向TA提问 私信TA
展开全部
想到了行转列PIVOT函数。但是你这个需求,我做不出来。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 2条折叠回答
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式