Answers for "oracle limit the number of rows returned"

SQL
1

oracle limit rows

SELECT * 
FROM   sometable
ORDER BY name
OFFSET 20 ROWS FETCH NEXT 10 ROWS ONLY;
Posted by: Guest on May-15-2020

Code answers related to "oracle limit the number of rows returned"

Code answers related to "SQL"

Browse Popular Code Answers by Language