[PostgreSQL] OFFSET
OFFSET
- 몇 번째 행 이후의 데이터를 보고 싶을 때 사용
- LIMIT과 함께 사용시 관습적으로 LIMIT 뒤에 사용함
-- show 20 orders after the 40th row (41th row - 60th row)
SELECT *
FROM orders
LIMIT 20
OFFSET 40;
-- select the names from the 'phones' of only the second and third most expensive phones
SELECT NAME
FROM phones
ORDER BY price DESC
LIMIT 2
OFFSET 1;