With Denali's CTP 3 release , we have more analytical functions out of which I am interested in two:

a) First_Value
b) Last_Value

I understood that FIRST_VALUE returns first value based on partition and order by clause while Last_Value returns last value based on partition and order by clause.

But in what practical situation they will be useful? A sample real time situation will help me understand this.

link|improve this question

60% accept rate
Also see this SSC article that just came out sqlservercentral.com/blogs/sqlservernotesfromthefield/archive/… – Aaron Bertrand Aug 31 '11 at 12:41
feedback

1 Answer

up vote 5 down vote accepted

These functions can help you get other information from the resultset without using complicated self-joins, derived tables, etc. For example, let's say you have twenty forum messages in a table, and you want to know who started the thread, and who posted the last response. They are ordered by date/time, so while MIN() & MAX() can help you identify when the first & last posts occurred, they can't tell you who those authors were unless you went out and got that additional information somehow. Even that can be complicated - if you don't have a natural or artificial key column for example (you could join on an identity column), you might be tempted to join on the date/time values, which are not guaranteed to be unique...

link|improve this answer
+1 - It's basically shorthand for something that's much more complicated to do without the built-in function. – JNK Jul 19 '11 at 12:35
And it is much faster. – usr Mar 9 at 19:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.