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: can this be done more elegant?

Re: can this be done more elegant?

From: steph <stephan0h_at_yahoo.de>
Date: 19 Apr 2006 10:26:43 -0700
Message-ID: <1145467603.685786.18680@e56g2000cwe.googlegroups.com>


another way of doing this would be:

select time,event_type,speed
from
(
select time,event_type,speed

      ,dense_rank() over (order by time desc) r   from test_ride
 where event_type = 'curve_R'
)
where r=1

br,
stephan Received on Wed Apr 19 2006 - 12:26:43 CDT

Original text of this message

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