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: SQl Query Group By function

Re: SQl Query Group By function

From: Michel Cadot <micadot{at}altern{dot}org>
Date: Thu, 8 Mar 2007 20:01:37 +0100
Message-ID: <45f05d90$0$9714$426a74cc@news.free.fr>

| I want the Customer Key with max clicks

Sorry did not understand:

select * from (
select c.cust_key, max(c.bllble_clk_cnt) bllble_clk_cnt, max(bllble_clk_rev_amt) bllble_clk_rev_amt from pfp_acct_dly_fct c where
time_key=TO_NUMBER(TO_CHAR(TRUNC(SYSDATE-1), 'YYYYMMDD')) group by c.cust_key
order by 2 desc, 3 desc
)
where rownum = 1
/

Regards
Michel Cadot Received on Thu Mar 08 2007 - 13:01:37 CST

Original text of this message

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