With a large set of data within a table, it is time consuming to query the entire set. To quickly return a specific section, follow the example below.
SELECT *
FROM
(SELECT row_number() over (order by first, last DESC) as row, i.first, i.last, i.ex
FROM information i
WHERE i.infotype = @type
) AS Results
WHERE row BETWEEN 19000 AND 19900
No comments:
Post a Comment