Can one retrieve only the Nth row from a table?
946002Jun 26 2012 — edited Jun 30 2012Hi,
Can anyone explain the execution order of the below query to fetch the nth row data.
SELECT * FROM t1 a
WHERE n = (SELECT COUNT(rowid)
FROM t1 b
WHERE a.rowid >= b.rowid);
Thanks,
Satya.