MSSQL Top 이용하여 중간데이터 가져오기

select top 20  *
from  authors
where au_id not in (select top 10 au_id from authors  order by au_id)
order by au_id



데이터 상단의 20개 중에 처음 10개를 제외한 11~20개의 데이터를 가져온다.