Re: quick question
From: Andrew Allen <ajallen_at_mailhost.det.ameritech.net>
Date: Sat, 25 Aug 2001 12:29:04 GMT
Message-ID: <3B879A27.D24EA030_at_mailhost.det.ameritech.net>
Date: Sat, 25 Aug 2001 12:29:04 GMT
Message-ID: <3B879A27.D24EA030_at_mailhost.det.ameritech.net>
Breath Like Testicles wrote:
>
> Hi all,
>
> Just wondering how I can sum columns in a query.
>
> For example is I were to select all users and their corresponding cash
> balances, how do I sum the cash balance column without having to export it
> to a spreadsheet?
In SLQ*Plus;
break on user_name, report
compute sum of balance on user_name, report
SELECT user_name,
balance
FROM emp_users
WHERE yada yada yada. . .
-- Andrew AllenReceived on Sat Aug 25 2001 - 14:29:04 CEST