SELECT * FROM "USER"
ORDER BY id_USER ASC OFFSET 9 limit 11; /*will get 10º to 20º row*/
SELECT Columns
FROM MyTable
ORDER BY SomeColumn -- !IMPORTANT: Without order by it will not execute
OFFSET 10 ROWS --this means start with row 11
FETCH NEXT 10 ROWS ONLY --this means limit the results to the next 10 rows.
SELECT first_name, last_name
FROM Customers
LIMIT 2 OFFSET 3;
LIMIT row_count OFFSET offset;
SELECT TOP 2 first_name, last_name
FROM Customers;