Is there a way to make an Oracle query behave like it contains a MySQL limit clause?
Oracle
MySQL limit
In MySQL, I can do this:
MySQL
On Oracle 12c (see row limiting clause in SQL reference):
SELECT * FROM sometable ORDER BY name OFFSET 20 ROWS FETCH NEXT 10 ROWS ONLY;