Answers for "The clause used to limit the number of rows returned by a query is Select one: a. Limit b. Maxrow c. Restrict d. Rownum"

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 "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 answers related to "SQL"

Browse Popular Code Answers by Language