Tuesday, January 8, 2019

Sample SQL Using 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.

SELECT TOP 10 * FROM Administrator.TRANSACTIONS

No comments:

Post a Comment