Oracle Database has a FETCH
clause that allows us to limit the number of rows returned by a SELECT
statement.
We can use this clause to specify the exact number of rows or the percentage of rows that a query should return. We can also specify an offset for which to start.
Continue reading