select top n * from table
위와 같이하면 처음 n개의 result set만이
돌아오는데
mysql에서 처럼
select * from table limit offset, count
result set중에 처음 시작 부분을 지정할 수 있는
offset과 같은 역할을 해주는 방법이
있는지 알고 싶네엽..