急!!!一张表查询问题
现有张表,结构如下:
aa bb cc dd ee
001 china 20 1 I
001 china 40 1 I
001 china 50 2 I
002 us 60 3 I
002 us 80 3 X
002 us 100 4 I
002 us 140 4 X
现要求是:在aa、bb、dd相同的条件下,如果ee里为I的cc的数就相加,为X的cc的数就相减,减出的数要为正数。
------解决方案-----------------------是这样么?
create table tab(aa varchar(10),bb varchar(10),cc int,dd int,ee varchar(1))
insert tab
select '001 ', 'china ',20,1, 'I '
union select '001 ', 'china ',40,1, 'I '
union select '001 ', 'china ',50,2, 'I '
union select '002 ', 'us ',60,3, 'I '
union select '002 ', 'us ',80,3, 'X '
union select '002 ', 'us ',100,4, 'I '
union select '002 ', 'us ',140,4, 'X '
select aa,bb,cc=abs(sum(case ee when 'I ' then cc when 'X ' then -cc end)),dd from tab group by aa,bb,dd
drop table tab
/* 结果
(7 row(s) affected)
aa bb cc dd
---------- ---------- ----------- -----------
001 china 60 1
001 china 50 2
002 us 20 3
002 us 40 4
(4 row(s) affected)
*/