Answer the question
In order to leave comments, you need to log in
How to organize the correct LIMIT in Oracle?
I need to get the first 10 records. On the Internet for Oracle 11, they suggest doing this:
SELECT * FROM (
select name from ...
) WHERE rownum < 10
Answer the question
In order to leave comments, you need to log in
select * from some_table
where rownum<=10
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question