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: Possible Use of a Cursor

Re: Possible Use of a Cursor

From: <casey.kirkpatrick_at_gmail.com>
Date: 22 Feb 2005 15:22:34 -0800
Message-ID: <1109114554.347191.169040@l41g2000cwc.googlegroups.com>


Not sure if this is exactly it, but it should be easy enough to tweak:

select * from (
select first_value(machine_proc) over (partition by instruction_nr order by position_nr) first_machine_proc from tab)
where first_machine_proc in (3600, 3400, 3430) Received on Tue Feb 22 2005 - 17:22:34 CST

Original text of this message

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