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

Home -> Community -> Mailing Lists -> Oracle-L -> RE: select distinct values

RE: select distinct values

From: Jesse, Rich <Rich.Jesse_at_qtiworld.com>
Date: Tue, 23 Sep 2003 14:29:47 -0800
Message-ID: <F001.005D0DB6.20030923142947@fatcity.com>


Man, every time I think I have a handle on the analytic functions, someone bowls me over with it's power and simplicity. I was trying to do this using the FIRST function of 9i. Oh well.

INSERT INTO saved_messages ...

Rich

Rich Jesse                           System/Database Administrator
rjesse_at_qtiworld.com                  Quad/Tech Inc, Sussex, WI USA

> -----Original Message-----
> From: elain he [mailto:elainhe_at_hotmail.com]
> Sent: Tuesday, September 23, 2003 5:00 PM
> To: Multiple recipients of list ORACLE-L
> Subject: RE: select distinct values
>
>
> Alan,
> Thanks! that works.
>
> elain
>
>
> >From: Alan Gano <Alan.Gano_at_banfield.net>
> >Reply-To: ORACLE-L_at_fatcity.com
> >To: Multiple recipients of list ORACLE-L <ORACLE-L_at_fatcity.com>
> >Subject: RE: select distinct values
> >Date: Tue, 23 Sep 2003 13:04:47 -0800
> >
> >
> >Try this (in 8i or above):
> >
> >select * from (
> > select
> > testid,
> > name,
> > status,
> > rank() over(
> > partition by testid
> > order by rownum
> > ) dup_rank
> > from testing
> >)
> >where dup_rank = 1

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Jesse, Rich
  INET: Rich.Jesse_at_qtiworld.com

Fat City Network Services    -- 858-538-5051 http://www.fatcity.com
San Diego, California        -- Mailing list and web hosting services
---------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
Received on Tue Sep 23 2003 - 17:29:47 CDT

Original text of this message

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