select top 10 * from (select ROW_NUMBER() over(order by Id) as rows,* from Customer) as C where C.rows>30 order by Id

select top 10 * from Customer where id not in(select top 30 Id from Customer order by Id)order by Id

select top 10 * from Customer where id>(select MAX(Id) from (select top 30 Id from CUstomer order by Id) as Customer) order by Id