orcal sql语句一个视图中多条数据 按ID 查询显示在一行
视图AID,pricetype,price数据1,1,101,2,201,3,302,1,12,2,22,3,3pricetype固定为3个查询结果ID,pricetyp...
视图A ID,pricetype ,price
数据 1,1,10
1,2,20
1,3,30
2,1,1
2,2,2
2,3,3
pricetype 固定为3个
查询结果 ID,pricetype1, price1, pricetype2, price2,pricetype3, price3
1, 1 10 2 20 3 30
2, 1 1 2 2 3 3 展开
数据 1,1,10
1,2,20
1,3,30
2,1,1
2,2,2
2,3,3
pricetype 固定为3个
查询结果 ID,pricetype1, price1, pricetype2, price2,pricetype3, price3
1, 1 10 2 20 3 30
2, 1 1 2 2 3 3 展开
1个回答
展开全部
select id,
max(case when pricetype=1 then pricetype end) pricetype1,
max(case when pricetype=1 then price end) price1,
max(case when pricetype=2 then pricetype end) pricetype2,
max(case when pricetype=2 then price end) price2,
max(case when pricetype=3 then pricetype end) pricetype3,
max(case when pricetype=3 then price end) price3
from A
group by id
也可写成
select id,
1 pricetype1,
max(case when pricetype=1 then price end) price1,
2 pricetype2,
max(case when pricetype=2 then price end) price2,
3 pricetype3,
max(case when pricetype=3 then price end) price3
from A
group by id
max(case when pricetype=1 then pricetype end) pricetype1,
max(case when pricetype=1 then price end) price1,
max(case when pricetype=2 then pricetype end) pricetype2,
max(case when pricetype=2 then price end) price2,
max(case when pricetype=3 then pricetype end) pricetype3,
max(case when pricetype=3 then price end) price3
from A
group by id
也可写成
select id,
1 pricetype1,
max(case when pricetype=1 then price end) price1,
2 pricetype2,
max(case when pricetype=2 then price end) price2,
3 pricetype3,
max(case when pricetype=3 then price end) price3
from A
group by id
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询