Window Functions in SQL Server

Posted on Simple Talk See other posts from Simple Talk
Published on Thu, 27 Oct 2011 00:00:00 GMT Indexed on 2011/11/11 18:16 UTC
Read the original article Hit count: 181

Filed under:
When SQL Server introduced Window Functions in SQL Server 2005, it was done in a rather tentative way, with only a handful of functions being introduced. This was frustrating, as they remove the last excuse for cursor-based operations by providing aggregations over a partition of the result set, and imposing an ordered sequence over a partition. Now, with SQL Server 2012, we are soon to enjoy a full range of Window Functions. They are going to make for some much simpler SQL queries.

© Simple Talk or respective owner

Related posts about Learn SQL Server