SQL Pilih baris antara 1000 dan 2000

SELECT TOP 1000 column_id
FROM (SELECT TOP 2000 column_id
		FROM table_name ORDER BY column_id ASC) sub
 ORDER BY sub.column_id DESC
Lazy Lemur