关于一个表的连接怎么实现?
表cwsf
dybh nd yf je
1-1-1 2006 2 30
1-1-1 2006 3 60
1-1-1 2006 4 80
1-1-2 2006 2 20
1-1-2 2006 3 70
。。。。。
我想实现:
1-1-1结果为2月的费用为30,3月份的费用为30,4月份的费用为20
1-1-2结果为2月的费用为20,3月份的费用为50
以2月份为标准,以后每个月的费用为该月费用减去前月费用。
update cwsf set je=tt.je-a.je from (select dybh,sum(je) from cwsf where nd=2006 and yf=3 group dybh) tt,
(select dybh,sum(je) from cwsf where nd=2006 and yf=2 group dybh) a
where nd=2006 and yf=3
可以一个月一个月的实现,或者用其它方法.不过现在错误的.
请教下应该怎么样实现先谢过了....