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
展开
 我来答
小狂中E
2013-12-09 · TA获得超过1418个赞
知道大有可为答主
回答量:1514
采纳率:66%
帮助的人:1025万
展开全部
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
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式