You can limit the results of a query to the first few rows returned using the FIRST or TOP keywords. While you can use these with any query, they are most useful with queries that use the ORDER BY clause.
Examples
The following query returns information about the first employee sorted by last name:
SELECT FIRST *
FROM employee
ORDER BY emp_lname
The following query returns the first five employees sorted by last name comes earliest in the alphabet: