Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: quick question

Re: quick question

From: Sunder <sunder.nochilur_at_us.bosch.com>
Date: Tue, 21 Aug 2001 14:01:41 -0400
Message-ID: <3B82A205.22A0CDED@us.bosch.com>


try this

compute sum of balance on report;
select user_name,balance from test_table;

If you have a grop by

compute sum of sum(balance) on report;
select user_name,sum(balance) from test_table group by user_name;

Hope this helps
Sunder

Breath Like Testicles wrote:

> Nono,
>
> What I meant was displaying the columns of data with the sum at the bottom
> of the column.
>
> Thanks for the help
>
Received on Tue Aug 21 2001 - 13:01:41 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US