Re: How to get the first four rows???
From: Ayokunle Giwa <akgiwa_at_cnct.com>
Date: 1996/05/17
Message-ID: <4nisfo$le5_at_mars.cnct.com>#1/1
Date: 1996/05/17
Message-ID: <4nisfo$le5_at_mars.cnct.com>#1/1
Hi I think this will work......
select x_date
from (select x_date
from y_date)
where rownum < 5
order by x_date desc;
Received on Fri May 17 1996 - 00:00:00 CEST