Where can I read about how to limit the numbers...

  • of rows resturned by a query?

    In other words, something similar to the MySQL's LIMIT option

    Thanks

  • SET ROWCOUNT your_number_of_row.

    causes SQL Server to stop processing the query after the specified number of rows are returned.

    or

    Using TOP and PERCENT to limit the number of rows returned in the result set.

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply