Limit Number Of Rows Returned In MS SQL
Published by philipnorton42 on Tue, 09/23/2008 - 09:34To limit the number of rows returned in a MS SQL query you need to use the TOP command. This goes before you name the columns that are to be returned by the SELECT statement.
The following query returns the first 35 rows from a table.
4 ORDER BY id DESCCategory:
Add new comment