To select nth row type the below query:
SELECT * FROM (
SELECT
ROW_NUMBER() OVER (ORDER BY key ASC) AS rownumber,
columns
FROM tablename
) AS foo
WHERE rownumber <= n
If you need to know more about SQL, it is recommended to go for the SQL Online Course today.