행 제한절 FETCH FIRST OFFSET
--행 제한절 --only --only는 지정 행 수만 반환한다. select employee_id, last_name from employees order by employee_id fetch first 5 rows only; --offset --행 제한 이전 건너 뛸 행 수 --null 행을 지정하는 경우 0개 반환 select employee_id, last_name from employees order by employee_id offset 5 rows fetch next rows only;
2024.01.02