Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Max two dates
Bunyamin,
You could use the Top-N SQL technique if you are using Oracle 8i.
Try SELECT * FROM (SELECT * FROM yourtable ORDER BY datefield DESC)
WHERE ROWNUM <= 2
HTH
Shailesh
-----Original Message-----
Sent: Monday, August 06, 2001 11:52 AM
To: Multiple recipients of list ORACLE-L
I have a date field and I want to select rows with max 2 date values. How can I do that?
Thank you.
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Yadav, Shailesh
INET: NDASY3_at_labor.state.ny.us
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: 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 Mon Aug 06 2001 - 10:36:29 CDT
![]() |
![]() |