About Lesson
SELECT 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
Examples:
You can also specify in percent:
This is very useful for large tables with thousands of records