问题现象: | 总帐的项目统计表,在单独查询一个项目的时候没有问题,但是在查询全部项目的时候,出来的项目统计表中有一下些项目没有数据,但这些项目是有数据的 |
问题原因: | 数据库问题 |
解决方案: | 可以查到错误的记录; select * from (select sum(mb)as mb,citem_id,ccode from gl_accass where ccode = '41010104' and iperiod = 1 group by citem_id,ccode ) a full join (select sum(me)as me,citem_id,ccode from ufdata_004_2003..gl_accass where ccode = '41010104' and iperiod = 12 group by citem_id,ccode ) b on a.citem_id = b.citem_id where isnull(mb,0) <> isnull(me,0) |
相关补丁: | |
版本: | 8.51A |
模块: | 总账 |
产品: | 851 |
问题名称: | 项目统计表无数 |
最后更新: | 2005-06-28 00:00:00 |