SELECT Name, Continent, Region FROM Country
WHERE Continent = "Europe"
ORDER BY NAME ASC
LIMIT 5; # Return the 1st 5 rows
SELECT Name AS "Country", Continent, Region FROM Country
WHERE Continent = "Europe"
ORDER BY NAME ASC
LIMIT 5 OFFSET 5; # To get the next 5 rows of data