T-SQL Tutorials - TSQLTutorials.com

TOP Option


Introduction

The TOP option is used for limiting the output of a query result set. The TOP SQL Statement is often used with the SELECT statement. TOP can either specify the number of rows to return, or the precentage of rows to return. The ORDER BY clause can be used successfully with the TOP option. In other words, the ORDER BY will be completed before the rows are limited.

Using TOP with SELECT Statements

Syntax for returning n number of rows:

SELECT TOP n *
FROM table

Example for returning 10 rows:

SELECT TOP 10 *
FROM employees

Syntax for returning n percentage of rows:

SELECT TOP n PERCENT *
FROM table

Example for returning 20 percent of rows:

SELECT TOP 20 PERCENT *
FROM employees


Using TOP with SELECT Statements using ORDER BY clause

Example for returning top 10 highest paid employees:

SELECT TOP 10 *
FROM employees
ORDER BY Salary DESC


Microsoft SQL Server 2005 - Standard Edition 5 CAL's

Price: $1785
Buy It Now
SQL Server 2005 Enterprise Edition 1 CAL
Current Price: $4599.99
Current Bids: 0
228-00683 MS SQL Server 2000 Standard 5 CAL

Price: $375
Buy It Now
Microsoft SQL Server 2008 R2 Enterprise w/25 Device Cal
Price: $13049
Buy It Now
Microsoft SQL Server 2000 Standard 10 CAL 228-00684 NEW

Price: $939
Buy It Now
Microsoft SQL Server 2000 Standard Edition -Five CAL -

Price: $399
Buy It Now







Copyright 2010 - TSQLTutorials.com