If you're running  Oracle8i,
you can do this: 
SELECT *
FROM  (SELECT * FROM my_table ORDER BY col_name_1
DESC)
WHERE  ROWNUM < 10;

Use this workaround with prior releases: 
SELECT *
FROM my_table a
WHERE 10 >= (SELECT COUNT(DISTINCT maxcol)
              FROM my_table b
              WHERE b.maxcol >= a.maxcol)
             ORDER BY maxcol DESC
;

Hope this helps!







--- Alexander Ordonez <[EMAIL PROTECTED]> wrote:
> Hi, gurus!!!
> 
> A need know how get n top row for any table somebody
> can help me!!
> 
> Thanks!!!
> 
> @lex
>
------------------------------------------------------------
>   Lic. Alexander Ordóñez Arroyo 
>   Caja Costarricense del Seguro Social              
>               
>   Soporte Técnico - División de Informática         
>            
>   Telefono: 295-2004, San José, Costa Rica          
>          
>   [EMAIL PROTECTED]
> 
>
------------------------------------------------------------
> UNIX is very user friendly, 
> It's just very particular about who it makes friends
> with.
> 
> 
> 
> --
> Please see the official ORACLE-L FAQ:
> http://www.orafaq.com
> --
> Author: Alexander Ordonez
>   INET: [EMAIL PROTECTED]
> 
> Fat City Network Services    -- (858) 538-5051  FAX:
> (858) 538-5051
> San Diego, California        -- Public Internet
> access / Mailing Lists
>
--------------------------------------------------------------------
> To REMOVE yourself from this mailing list, send an
> E-Mail message
> to: [EMAIL PROTECTED] (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).


__________________________________________________
Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail
http://personal.mail.yahoo.com/
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Stas
  INET: [EMAIL PROTECTED]

Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
San Diego, California        -- Public Internet access / Mailing Lists
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (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).

Reply via email to