5个回答
展开全部
select sum(money) from A where Atype='0'
minus
select sum(money) from A where Atype='1'
这样写比较好理解吧,上面查出来是收入的总和,下面是支出的总和,minus是减法函数,执行以下就可以了(oracle)
minus
select sum(money) from A where Atype='1'
这样写比较好理解吧,上面查出来是收入的总和,下面是支出的总和,minus是减法函数,执行以下就可以了(oracle)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select sum(money-2*atype*money) amt from a
最简单了吧,算出你一共有多少流水,再减去两个花去的
最简单了吧,算出你一共有多少流水,再减去两个花去的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select sum(a.Money) -sum(b.Money) from 表名 a,表名 b where a.Atype=0 and b.Atype=1
不知道对不对哈
不知道对不对哈
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select
sum(money)
from
(select
case
when Atype = '0' then sum(Money)
when Atype = '1' then -1 * sum(Money)
end money
from A
group by Atype
) B
sum(money)
from
(select
case
when Atype = '0' then sum(Money)
when Atype = '1' then -1 * sum(Money)
end money
from A
group by Atype
) B
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select sum(Money) from (select case when Atype=0 then Money else 0-Money end as Money from table)
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询