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

Home -> Community -> Usenet -> c.d.o.misc -> i solved my compute counts problems - sorry to bother you - here is the answer

i solved my compute counts problems - sorry to bother you - here is the answer

From: gail <gailbuf_at_hotmail.com>
Date: 27 Aug 2002 07:34:20 -0700
Message-ID: <a61820ad.0208270634.5e24b1d0@posting.google.com>


set pagesize 0
set lines 60
set feedback off
clear breaks;
clear computes;

ttitle 'Sender Transaction|Report'
btitle 'Confidential'
break on sender3 skip 2
compute sum label 'Transaction Count' of transaction_count on sender3

column sender3 HEADING 'Sender' FORMAT A20 column inq_type HEADING 'Transaction Type' FORMAT A20 column transaction_count HEADING 'Transaction Count' FORMAT 99999999 select sender3,inq_type,count(inq_type) transaction_count from gail_trans_log
group by sender3,inq_type

Thanks anyway,

Gail Buffington Received on Tue Aug 27 2002 - 09:34:20 CDT

Original text of this message

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