The clause used to limit the number of rows returned by a query is Select one: a. Limit b. Maxrow c. Restrict d. Rownum code example
Example: oracle limit rows
SELECT *
FROM sometable
ORDER BY name
OFFSET 20 ROWS FETCH NEXT 10 ROWS ONLY;
SELECT *
FROM sometable
ORDER BY name
OFFSET 20 ROWS FETCH NEXT 10 ROWS ONLY;