Scunningham99
Programmer
i have a query which selects names and dates in order.
SELECT * FROM (
SELECT name,
date
FROM table
ORDER BY date )
WHERE rownum < 3;
this works fine and returns 2 rows. but i only wish to display the second row. how can i do this.
for example it is the second in the list i wish to display not both
thanks in advance
Sy UK