Hi, Many a times in a query we need to limit down the number of records returned in the query. This can be done in two ways using the TOP keyword or the row count keyword. Select top 10 from Table This will return the top 10 records from the query. We...