求SQL语句,参考图片内容,急………………

四楼的有个问题请教!selectid,sum(one),sum(two),sum(three)from(selectid,sum(consume)asone,0,0fro... 四楼的有个问题请教!
select id,sum(one),sum(two),sum(three)
from (select id,sum(consume) as one,0,0 from s where month = 1 group by id
union all select id,0,sum(consume) as two,0 from s where month = 2 group by id
union all select id,0,0,sum(consume) as three from s where month = 3 group by id)
group by id;
ORA-00904: "THREE": 标识符无效,这个执行有个错误,请大侠指点!
展开
 我来答
云计算懂管理的小司
2011-03-07 · TA获得超过1146个赞
知道小有建树答主
回答量:756
采纳率:100%
帮助的人:445万
展开全部
select 账号,sum(case when 月份= 1 then 消费else 0 end) 一月,sum(case when 月份= 2 then 消费else 0 end) 二月,sum(case when 月份= 3 then 消费 else 0 end) 三月 from 表 group by 账号;
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
xautwuyi
2011-03-07 · TA获得超过404个赞
知道小有建树答主
回答量:570
采纳率:0%
帮助的人:368万
展开全部
select 账号,sum(1月),sum(2月),sum(3月)
from (
select 账号,sum(消费) as 1月,0,0
from 表 where 月份 = '1'
group by 账号
union all
select 账号,0,sum(消费) as 2月,0
from 表 where 月份 = '2'
group by 账号
union all
select 账号,0,0,sum(消费) as 3月
from 表 where 月份 = '3'
group by 账号
)
group by 账号
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
JMxiang113
2011-03-07 · TA获得超过117个赞
知道小有建树答主
回答量:232
采纳率:0%
帮助的人:189万
展开全部
declare @sql nvarchar(1000)
set @sql = 'select 账号'
select @sql =@sql+ ', sum(case when 月份='''+rtrim(月份)+''' THEN 消费 ELSE 0 END) AS '''+月份+'''' from tablename group by 月份
set @sql = @sql + 'from tablename group by 账号'
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
jack_fx
2011-03-07 · TA获得超过967个赞
知道大有可为答主
回答量:1050
采纳率:0%
帮助的人:959万
展开全部
select
帐号,
decode(月份,1,消费,0) '1月',
decode(月份,2,消费,0) '2月',
decode(月份,3,消费,0) '3月'
from table
追问
你这个有点问题
select id,
decode(month ,1,consume,0) one,
decode(month ,2,consume,0) two,
decode(month ,3,consume,0) three
from s
group by id;
这样就可以了
追答
哈哈, 回复太快了, 没看清小图
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式