how to limit the number of rows in oracle sql 11c code example
Example 1: oracle limit rows
SELECT *
FROM sometable
ORDER BY name
OFFSET 20 ROWS FETCH NEXT 10 ROWS ONLY;
Example 2: limit rows after order by oracle
oracle limit rows
SELECT *
FROM sometable
ORDER BY name
OFFSET 20 ROWS FETCH NEXT 10 ROWS ONLY;
oracle limit rows