我想通过sql查询显示RAmount字段的多个状态,type=1,type=2,type=3,type=4的不同值,同时显示出来,
2个回答
展开全部
不是很明白你要问什么:
select RAmount from 表名 where type=1
union select RAmount from 表名 where type=2
union select RAmount from 表名 where type=3
union select RAmount from 表名 where type=4
select RAmount from 表名 where type=1
union select RAmount from 表名 where type=2
union select RAmount from 表名 where type=3
union select RAmount from 表名 where type=4
追答
大概明白一点你的意思了, 你看看下面sql t1,t2,t3,t4 就是这4个阶段的值
select (select RAmount from a a1 where a1.num=a.num and type=1) t1,
(select RAmount from a a2 where a2.num=a.num and type=2) t2,
(select RAmount from a a3 where a3.num=a.num and type=3) t3,
(select RAmount from a a4 where a4.num=a.num and type=4) t4 from a;
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询