January 21, 2011 at 9:51 pm
Hi,
what is the difference between row_number and top functions in sql server
January 22, 2011 at 1:13 am
Easier question would be what are the similarities, because the answer to that would be "None"
Row number assigns sequential numbers to a column in a resultset, based on what is specified for the partition and ordering. It's one of a class of windowing functions (the others being Rank, DenseRank and NTile)
Top limits the maximum number of rows returned by a query.
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
January 23, 2011 at 10:50 pm
Hi
If you want know the T-sql difference , you can refer this link
http://thehobt.blogspot.com/2009/02/rownumber-rank-and-denserank.html
Viewing 3 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply