Hi,
Could you please help me with the following problem?
I have a following table name Messages:
******************
msg_code totals
******************
sssss 2
ccccc 3
sssss 5
ccccc 1
I would like to get a sum of totals by msg_code
******************
msg_code totals
******************
sssss 7
ccccc 4
I tried the following script:
compute sum of totals on err_num
break on msg_code skip 1
select msg_code,totals
from Messages
;
However I do not receive what I expect. What I am doing wrong? Any help will be appreciated
Thank you,
EStersita
Could you please help me with the following problem?
I have a following table name Messages:
******************
msg_code totals
******************
sssss 2
ccccc 3
sssss 5
ccccc 1
I would like to get a sum of totals by msg_code
******************
msg_code totals
******************
sssss 7
ccccc 4
I tried the following script:
compute sum of totals on err_num
break on msg_code skip 1
select msg_code,totals
from Messages
;
However I do not receive what I expect. What I am doing wrong? Any help will be appreciated
Thank you,
EStersita