How to display the 10th record of emp table(without using rowid) ?

Oracle Apps Interview QuestionsCategory: SQLHow to display the 10th record of emp table(without using rowid) ?
Questions Master asked 9 years ago

How to display the 10th record of emp table(without using rowid) ?

1 Answers
Shailender Thallam Staff answered 9 years ago

SELECT * FROM emp WHERE rownum < 11
MINUS
SELECT * FROM emp WHERE rownum < 10;