The TOP Clause
The TOP clause is used to specify the number of records to return.The TOP clause can be very useful on large tables with thousands of records. Returning a large number of records can impact on performance.
Syntax
SELECT TOP number|percent column_name(s)
FROM table_name
FROM table_name