日期:2014-05-17 浏览次数:20481 次
create table t1(姓名 nvarchar(10),支出 int)
insert into t1 select '李四',-1000
insert into t1 select '张山',-2000
create table t2(姓名 nvarchar(10),收入 int)
insert into t2 select '张山', 5000
insert into t2 select '李四', 1000
insert into t2 select '王五', 1000
go
select a.姓名,sum(isnull(c.收入,0)) as 总存款,sum(isnull(c.收入,0))+sum(isnull(b.支出,0)) as 余额
from
(select distinct 姓名 from(
select 姓名 from t1
union
select 姓名 from t2
)t
)a left join t1 b on a.姓名=b.姓名
left join t2 c on a.姓名=c.姓名
group by a.姓名
/*
姓名 总存款 余额
---------- ----------- -----------
李四 1000 0
王五 1000 1000
张山 5000 3000
(3 行受影响)
*/
go
drop table t1,t2