sql查询一年里1到4月的数据
Tempyear monthamount1991 1月 1.11991 ...
Temp
year month amount
1991 1月 1.1
1991 2 月 1.2
1991 3 月 1.3
1991 4 月 1.4
1992 1 月 2.1
1992 2 月 2.2
1992 3 月 2.3
1992 4 月 2.4
查成这样一个结果
year 1月 2月 3月 4月
1991 1.1 1.2 1.3 1.4
1992 2.1 2.2 2.3 2.4
求解 展开
year month amount
1991 1月 1.1
1991 2 月 1.2
1991 3 月 1.3
1991 4 月 1.4
1992 1 月 2.1
1992 2 月 2.2
1992 3 月 2.3
1992 4 月 2.4
查成这样一个结果
year 1月 2月 3月 4月
1991 1.1 1.2 1.3 1.4
1992 2.1 2.2 2.3 2.4
求解 展开
1个回答
展开全部
select * from Temp where month in ('1月','2月','3月','4月')
追问
不对,这样查询和原来一模一样,请看清楚需要实现效果
追答
select year,
(select amount from temp t1 where t1.year=t2.year and t1.month='1月') 1月,
(select amount from temp t1 where t1.year=t2.year and t1.month='2月') 2月,
(select amount from temp t1 where t1.year=t2.year and t1.month='3月') 3月,
(select amount from temp t1 where t1.year=t2.year and t1.month='4月') 4月
from temp t2 group by year;
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询