首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

求个sql语句解决思路

2013-10-21 
求个sql语句实现功能select a.编码,a.名称,(select sum(金额) from b where b.编码a.编码) as 金额1,(se

求个sql语句
实现功能
"select a.编码,a.名称,(select sum(金额) from b where b.编码=a.编码) as 金额1,(select sum(金额) from c where c.编码=a.编码) as 金额2 from a" 
我应该如何实现对嵌套sql的加减运算呢,就是上面的语句,我想在体现个金额3,金额3=金额1-金额2,怎么在一天语句中实现呢,有什么好方法没?
[解决办法]

select a.编码,a.名称,
(select sum(金额) from b where b.编码=a.编码) as 金额1,
(select sum(金额) from c where c.编码=a.编码) as 金额2,
(select sum(金额) from b where b.编码=a.编码)-(select sum(金额) from c where c.编码=a.编码) as 金额2
from a

[解决办法]
可以
select a.编码,a.名称,sum(b.金额) as 金额1,sum(c.金额) as 金额2,
    sum(isnull(b.金额,0))- sum(isnull(c.金额,0)) as 金额3
from a
left join b on b.编码=a.编码
left join c on c.编码=a.编码
group by a.编码,a.名称

热点排行