Getting Top N Rows in SQL2K and SQL2K5 [Non Tech Ppl Plz Excuse]

SQL 2K

declare @topN int

set @topN = 10

set rowcount @topN

select * from [TABLE]

/***************************/

SQL 2K5

declare @topN int

set @topN = 5

select top (@topN) * from [TABLE]

Comments

Popular posts from this blog

SOLID Principles with C#

Overview of MVC

MVC Request Execution Stages - Life Cycle

Applying Dynamic Themes to WebPage

Send Email using Gmail SMTP server - ASP.NET

ASP.NET MVC: Benefits

Variable Value in Top Statement

Differences between a Structure and Class

Introduction to ASP.Net MVC