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 -> Re: A newbie question about select record with distinct colum?

Re: A newbie question about select record with distinct colum?

From: Falko Rotter <fantomas99_at_gmx.de>
Date: Fri, 17 Aug 2001 10:58:35 +0200
Message-ID: <9liman$ld0$1@newsread2.nexgo.de>


or use a join (is better)

select t.*
from table1 t, (select min(rowid) as r from table1 group by c1) vw where t.rowid=vw.r;

--

Regards,
Falko Rotter

_________________________________________

- Software Developer -

Rotter & Kalweit Softwaredesign GbR
Friemarer Straße 38

99867 Gotha
GERMANY
Received on Fri Aug 17 2001 - 03:58:35 CDT

Original text of this message

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