<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: SQL SERVER &#8211; Introduction to FIRST _VALUE and LAST_VALUE  &#8211; Analytic Functions Introduced in SQL Server 2012</title>
	<atom:link href="http://blog.sqlauthority.com/2011/11/09/sql-server-introduction-to-first-_value-and-last_value-analytic-functions-introduced-in-sql-server-2012/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2011/11/09/sql-server-introduction-to-first-_value-and-last_value-analytic-functions-introduced-in-sql-server-2012/</link>
	<description>SQL, SQL Server, MySQL, Big Data and NoSQL</description>
	<lastBuildDate>Wed, 19 Jun 2013 15:04:54 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Mr. Casey</title>
		<link>http://blog.sqlauthority.com/2011/11/09/sql-server-introduction-to-first-_value-and-last_value-analytic-functions-introduced-in-sql-server-2012/#comment-484877</link>
		<dc:creator><![CDATA[Mr. Casey]]></dc:creator>
		<pubDate>Wed, 29 May 2013 15:01:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15669#comment-484877</guid>
		<description><![CDATA[Would anyone know if there is a way to simulate this function (specifically last) in SQL Server 2008? Thinking along the lines of this... http://blog.sqlauthority.com/2011/11/24/sql-server-solution-to-puzzle-simulate-lead-and-lag-without-using-sql-server-2012-analytic-function/]]></description>
		<content:encoded><![CDATA[<p>Would anyone know if there is a way to simulate this function (specifically last) in SQL Server 2008? Thinking along the lines of this&#8230; <a href="http://blog.sqlauthority.com/2011/11/24/sql-server-solution-to-puzzle-simulate-lead-and-lag-without-using-sql-server-2012-analytic-function/" rel="nofollow">http://blog.sqlauthority.com/2011/11/24/sql-server-solution-to-puzzle-simulate-lead-and-lag-without-using-sql-server-2012-analytic-function/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jim</title>
		<link>http://blog.sqlauthority.com/2011/11/09/sql-server-introduction-to-first-_value-and-last_value-analytic-functions-introduced-in-sql-server-2012/#comment-482099</link>
		<dc:creator><![CDATA[Jim]]></dc:creator>
		<pubDate>Fri, 24 May 2013 21:19:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15669#comment-482099</guid>
		<description><![CDATA[Would be great to have it produce a table that has the first value and last value in across all rows. Only First value replicated down and last value you have to hunt for it.]]></description>
		<content:encoded><![CDATA[<p>Would be great to have it produce a table that has the first value and last value in across all rows. Only First value replicated down and last value you have to hunt for it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Casey</title>
		<link>http://blog.sqlauthority.com/2011/11/09/sql-server-introduction-to-first-_value-and-last_value-analytic-functions-introduced-in-sql-server-2012/#comment-450415</link>
		<dc:creator><![CDATA[Casey]]></dc:creator>
		<pubDate>Fri, 05 Apr 2013 19:49:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15669#comment-450415</guid>
		<description><![CDATA[how about pre2012? lets say server 2008... 

convert this access code to server08. the first function doesnt work

SELECT DISTINCT LGCUSTOMER.CUST_CODE, LGCUSTOMER.CUST_FNAME, LGCUSTOMER.CUST_LNAME, LGCUSTOMER.CUST_STREET, LGCUSTOMER.CUST_CITY, LGCUSTOMER.CUST_STATE, LGCUSTOMER.CUST_ZIP, First(LGINVOICE.INV_DATE) AS INV_DATE, Max(LGINVOICE.INV_TOTAL) AS [Largest Invoice]
FROM LGCUSTOMER LEFT JOIN LGINVOICE ON LGCUSTOMER.CUST_CODE = LGINVOICE.CUST_CODE
GROUP BY LGCUSTOMER.CUST_CODE, LGCUSTOMER.CUST_FNAME, LGCUSTOMER.CUST_LNAME, LGCUSTOMER.CUST_STREET, LGCUSTOMER.CUST_CITY, LGCUSTOMER.CUST_STATE, LGCUSTOMER.CUST_ZIP
HAVING (((LGCUSTOMER.CUST_STATE)=&quot;AL&quot;))
ORDER BY LGCUSTOMER.CUST_LNAME;]]></description>
		<content:encoded><![CDATA[<p>how about pre2012? lets say server 2008&#8230; </p>
<p>convert this access code to server08. the first function doesnt work</p>
<p>SELECT DISTINCT LGCUSTOMER.CUST_CODE, LGCUSTOMER.CUST_FNAME, LGCUSTOMER.CUST_LNAME, LGCUSTOMER.CUST_STREET, LGCUSTOMER.CUST_CITY, LGCUSTOMER.CUST_STATE, LGCUSTOMER.CUST_ZIP, First(LGINVOICE.INV_DATE) AS INV_DATE, Max(LGINVOICE.INV_TOTAL) AS [Largest Invoice]<br />
FROM LGCUSTOMER LEFT JOIN LGINVOICE ON LGCUSTOMER.CUST_CODE = LGINVOICE.CUST_CODE<br />
GROUP BY LGCUSTOMER.CUST_CODE, LGCUSTOMER.CUST_FNAME, LGCUSTOMER.CUST_LNAME, LGCUSTOMER.CUST_STREET, LGCUSTOMER.CUST_CITY, LGCUSTOMER.CUST_STATE, LGCUSTOMER.CUST_ZIP<br />
HAVING (((LGCUSTOMER.CUST_STATE)=&#8221;AL&#8221;))<br />
ORDER BY LGCUSTOMER.CUST_LNAME;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: user</title>
		<link>http://blog.sqlauthority.com/2011/11/09/sql-server-introduction-to-first-_value-and-last_value-analytic-functions-introduced-in-sql-server-2012/#comment-448865</link>
		<dc:creator><![CDATA[user]]></dc:creator>
		<pubDate>Tue, 02 Apr 2013 15:50:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15669#comment-448865</guid>
		<description><![CDATA[Very nice explanation. Thanks]]></description>
		<content:encoded><![CDATA[<p>Very nice explanation. Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: user</title>
		<link>http://blog.sqlauthority.com/2011/11/09/sql-server-introduction-to-first-_value-and-last_value-analytic-functions-introduced-in-sql-server-2012/#comment-414795</link>
		<dc:creator><![CDATA[user]]></dc:creator>
		<pubDate>Tue, 29 Jan 2013 18:55:35 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15669#comment-414795</guid>
		<description><![CDATA[Is there a function like SECOND_VALUE() for selecting second value per group?
I mean by using only analytical window function (not ranking)]]></description>
		<content:encoded><![CDATA[<p>Is there a function like SECOND_VALUE() for selecting second value per group?<br />
I mean by using only analytical window function (not ranking)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER &#8211; Weekly Series &#8211; Memory Lane &#8211; #007 &#171; SQL Server Journey with SQL Authority</title>
		<link>http://blog.sqlauthority.com/2011/11/09/sql-server-introduction-to-first-_value-and-last_value-analytic-functions-introduced-in-sql-server-2012/#comment-393529</link>
		<dc:creator><![CDATA[SQL SERVER &#8211; Weekly Series &#8211; Memory Lane &#8211; #007 &#171; SQL Server Journey with SQL Authority]]></dc:creator>
		<pubDate>Sat, 15 Dec 2012 01:31:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15669#comment-393529</guid>
		<description><![CDATA[[...] Introduction to FIRST _VALUE and LAST_VALUE – Analytic Functions Introduced in SQL Server 2012 SQL Server 2012 introduces new analytical functions FIRST_VALUE() and LAST_VALUE(). This function returns first and last value from the list. It will be very difficult to explain this in words so I’d like to attempt to explain its function through a brief example. Instead of creating a new table, I will be using the AdventureWorks sample database as most developers use that for experiment purposes. [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Introduction to FIRST _VALUE and LAST_VALUE – Analytic Functions Introduced in SQL Server 2012 SQL Server 2012 introduces new analytical functions FIRST_VALUE() and LAST_VALUE(). This function returns first and last value from the list. It will be very difficult to explain this in words so I’d like to attempt to explain its function through a brief example. Instead of creating a new table, I will be using the AdventureWorks sample database as most developers use that for experiment purposes. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: madhivanan</title>
		<link>http://blog.sqlauthority.com/2011/11/09/sql-server-introduction-to-first-_value-and-last_value-analytic-functions-introduced-in-sql-server-2012/#comment-377177</link>
		<dc:creator><![CDATA[madhivanan]]></dc:creator>
		<pubDate>Tue, 20 Nov 2012 06:27:51 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15669#comment-377177</guid>
		<description><![CDATA[Yes ACCESS is a different thing :)]]></description>
		<content:encoded><![CDATA[<p>Yes ACCESS is a different thing :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER &#8211; Weekly Series &#8211; Memory Lane &#8211; #003 &#171; SQL Server Journey with SQL Authority</title>
		<link>http://blog.sqlauthority.com/2011/11/09/sql-server-introduction-to-first-_value-and-last_value-analytic-functions-introduced-in-sql-server-2012/#comment-375259</link>
		<dc:creator><![CDATA[SQL SERVER &#8211; Weekly Series &#8211; Memory Lane &#8211; #003 &#171; SQL Server Journey with SQL Authority]]></dc:creator>
		<pubDate>Sat, 17 Nov 2012 01:32:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15669#comment-375259</guid>
		<description><![CDATA[[...] Introduction to FIRST_VALUE and LAST_VALUE [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Introduction to FIRST_VALUE and LAST_VALUE [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: graticiel</title>
		<link>http://blog.sqlauthority.com/2011/11/09/sql-server-introduction-to-first-_value-and-last_value-analytic-functions-introduced-in-sql-server-2012/#comment-375073</link>
		<dc:creator><![CDATA[graticiel]]></dc:creator>
		<pubDate>Fri, 16 Nov 2012 18:11:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15669#comment-375073</guid>
		<description><![CDATA[LOL the First()  function which is doing the same is existing in Microsoft ACCESS for 15 years  !!!]]></description>
		<content:encoded><![CDATA[<p>LOL the First()  function which is doing the same is existing in Microsoft ACCESS for 15 years  !!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER &#8211; Beginning New Weekly Series &#8211; Memory Lane &#8211; #002 &#171; SQL Server Journey with SQL Authority</title>
		<link>http://blog.sqlauthority.com/2011/11/09/sql-server-introduction-to-first-_value-and-last_value-analytic-functions-introduced-in-sql-server-2012/#comment-371930</link>
		<dc:creator><![CDATA[SQL SERVER &#8211; Beginning New Weekly Series &#8211; Memory Lane &#8211; #002 &#171; SQL Server Journey with SQL Authority]]></dc:creator>
		<pubDate>Sat, 10 Nov 2012 01:31:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15669#comment-371930</guid>
		<description><![CDATA[[...] Introduction to FIRST _VALUE and LAST_VALUE – Analytic Functions [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Introduction to FIRST _VALUE and LAST_VALUE – Analytic Functions [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cathy</title>
		<link>http://blog.sqlauthority.com/2011/11/09/sql-server-introduction-to-first-_value-and-last_value-analytic-functions-introduced-in-sql-server-2012/#comment-197334</link>
		<dc:creator><![CDATA[Cathy]]></dc:creator>
		<pubDate>Thu, 17 Nov 2011 01:08:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15669#comment-197334</guid>
		<description><![CDATA[Nice to learn the new features in 2012]]></description>
		<content:encoded><![CDATA[<p>Nice to learn the new features in 2012</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: RobyCana</title>
		<link>http://blog.sqlauthority.com/2011/11/09/sql-server-introduction-to-first-_value-and-last_value-analytic-functions-introduced-in-sql-server-2012/#comment-194376</link>
		<dc:creator><![CDATA[RobyCana]]></dc:creator>
		<pubDate>Sun, 13 Nov 2011 09:00:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15669#comment-194376</guid>
		<description><![CDATA[Thanks, Pinal, in some cases it will be an useful function. MS Access First() and Last() are grouping functions, I suppose , this seems to be a row-level function]]></description>
		<content:encoded><![CDATA[<p>Thanks, Pinal, in some cases it will be an useful function. MS Access First() and Last() are grouping functions, I suppose , this seems to be a row-level function</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: G D Milner</title>
		<link>http://blog.sqlauthority.com/2011/11/09/sql-server-introduction-to-first-_value-and-last_value-analytic-functions-introduced-in-sql-server-2012/#comment-194032</link>
		<dc:creator><![CDATA[G D Milner]]></dc:creator>
		<pubDate>Sat, 12 Nov 2011 19:30:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15669#comment-194032</guid>
		<description><![CDATA[Isn&#039;t this the same functionality they have had in MS Access queries for years with First() and Last()?]]></description>
		<content:encoded><![CDATA[<p>Isn&#8217;t this the same functionality they have had in MS Access queries for years with First() and Last()?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ashish Kadam</title>
		<link>http://blog.sqlauthority.com/2011/11/09/sql-server-introduction-to-first-_value-and-last_value-analytic-functions-introduced-in-sql-server-2012/#comment-192897</link>
		<dc:creator><![CDATA[Ashish Kadam]]></dc:creator>
		<pubDate>Fri, 11 Nov 2011 05:42:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15669#comment-192897</guid>
		<description><![CDATA[Hi Pinal,
 It&#039;s very good article but please more elaborate it various data types so that we are easily understand and apply it.]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal,<br />
 It&#8217;s very good article but please more elaborate it various data types so that we are easily understand and apply it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER &#8211; Puzzle to Win Print Book &#8211; Functions FIRST_VALUE and LAST_VALUE with OVER clause and ORDER BY &#171; Journey to SQLAuthority</title>
		<link>http://blog.sqlauthority.com/2011/11/09/sql-server-introduction-to-first-_value-and-last_value-analytic-functions-introduced-in-sql-server-2012/#comment-192763</link>
		<dc:creator><![CDATA[SQL SERVER &#8211; Puzzle to Win Print Book &#8211; Functions FIRST_VALUE and LAST_VALUE with OVER clause and ORDER BY &#171; Journey to SQLAuthority]]></dc:creator>
		<pubDate>Fri, 11 Nov 2011 01:32:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15669#comment-192763</guid>
		<description><![CDATA[[...] Introduction to FIRST_VALUE and LAST_VALUE [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Introduction to FIRST_VALUE and LAST_VALUE [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pritam</title>
		<link>http://blog.sqlauthority.com/2011/11/09/sql-server-introduction-to-first-_value-and-last_value-analytic-functions-introduced-in-sql-server-2012/#comment-192151</link>
		<dc:creator><![CDATA[Pritam]]></dc:creator>
		<pubDate>Thu, 10 Nov 2011 09:03:59 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15669#comment-192151</guid>
		<description><![CDATA[Very nice pinal]]></description>
		<content:encoded><![CDATA[<p>Very nice pinal</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Samuel Vanga</title>
		<link>http://blog.sqlauthority.com/2011/11/09/sql-server-introduction-to-first-_value-and-last_value-analytic-functions-introduced-in-sql-server-2012/#comment-191979</link>
		<dc:creator><![CDATA[Samuel Vanga]]></dc:creator>
		<pubDate>Thu, 10 Nov 2011 02:20:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15669#comment-191979</guid>
		<description><![CDATA[I think these functions can come in handy specially for reporting purposes. You would typically end up writing a correlated sub query or a cte joining to itself to achieve the above result. And first_value, last_value will eliminate them. It would be interesting to see the performance benefits of these new boys!]]></description>
		<content:encoded><![CDATA[<p>I think these functions can come in handy specially for reporting purposes. You would typically end up writing a correlated sub query or a cte joining to itself to achieve the above result. And first_value, last_value will eliminate them. It would be interesting to see the performance benefits of these new boys!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER &#8211; OVER clause with FIRST _VALUE and LAST_VALUE &#8211; Analytic Functions Introduced in SQL Server 2012 &#8211; ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING &#171; Journey to SQLAuthority</title>
		<link>http://blog.sqlauthority.com/2011/11/09/sql-server-introduction-to-first-_value-and-last_value-analytic-functions-introduced-in-sql-server-2012/#comment-191961</link>
		<dc:creator><![CDATA[SQL SERVER &#8211; OVER clause with FIRST _VALUE and LAST_VALUE &#8211; Analytic Functions Introduced in SQL Server 2012 &#8211; ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING &#171; Journey to SQLAuthority]]></dc:creator>
		<pubDate>Thu, 10 Nov 2011 01:30:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15669#comment-191961</guid>
		<description><![CDATA[[...] Comments       GA_googleFillSlot(&quot;sqlauthority_728x90&quot;);     &#171; SQL SERVER &#8211; Introduction to FIRST _VALUE and LAST_VALUE &#8211; Analytic Functions Introduced... [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Comments       GA_googleFillSlot(&quot;sqlauthority_728x90&quot;);     &laquo; SQL SERVER &#8211; Introduction to FIRST _VALUE and LAST_VALUE &#8211; Analytic Functions Introduced&#8230; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jay Ram</title>
		<link>http://blog.sqlauthority.com/2011/11/09/sql-server-introduction-to-first-_value-and-last_value-analytic-functions-introduced-in-sql-server-2012/#comment-191888</link>
		<dc:creator><![CDATA[Jay Ram]]></dc:creator>
		<pubDate>Wed, 09 Nov 2011 22:08:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15669#comment-191888</guid>
		<description><![CDATA[This is similar to First.ID and Last.ID in SAS...]]></description>
		<content:encoded><![CDATA[<p>This is similar to First.ID and Last.ID in SAS&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Viki</title>
		<link>http://blog.sqlauthority.com/2011/11/09/sql-server-introduction-to-first-_value-and-last_value-analytic-functions-introduced-in-sql-server-2012/#comment-191705</link>
		<dc:creator><![CDATA[Viki]]></dc:creator>
		<pubDate>Wed, 09 Nov 2011 16:50:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15669#comment-191705</guid>
		<description><![CDATA[Super. please keep posting]]></description>
		<content:encoded><![CDATA[<p>Super. please keep posting</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: resender</title>
		<link>http://blog.sqlauthority.com/2011/11/09/sql-server-introduction-to-first-_value-and-last_value-analytic-functions-introduced-in-sql-server-2012/#comment-191578</link>
		<dc:creator><![CDATA[resender]]></dc:creator>
		<pubDate>Wed, 09 Nov 2011 12:59:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15669#comment-191578</guid>
		<description><![CDATA[This might be handy, for a project I&#039;m working on. In this project I got a view that needs to calculate how a quota&#039;s evolution compares to what is actually being produced. Since a quota can complete a goal the view needs to take this into account.]]></description>
		<content:encoded><![CDATA[<p>This might be handy, for a project I&#8217;m working on. In this project I got a view that needs to calculate how a quota&#8217;s evolution compares to what is actually being produced. Since a quota can complete a goal the view needs to take this into account.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Lally</title>
		<link>http://blog.sqlauthority.com/2011/11/09/sql-server-introduction-to-first-_value-and-last_value-analytic-functions-introduced-in-sql-server-2012/#comment-191478</link>
		<dc:creator><![CDATA[John Lally]]></dc:creator>
		<pubDate>Wed, 09 Nov 2011 09:27:21 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15669#comment-191478</guid>
		<description><![CDATA[Good stuff Pinal. Thanks!]]></description>
		<content:encoded><![CDATA[<p>Good stuff Pinal. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Praveen</title>
		<link>http://blog.sqlauthority.com/2011/11/09/sql-server-introduction-to-first-_value-and-last_value-analytic-functions-introduced-in-sql-server-2012/#comment-191378</link>
		<dc:creator><![CDATA[Praveen]]></dc:creator>
		<pubDate>Wed, 09 Nov 2011 06:33:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15669#comment-191378</guid>
		<description><![CDATA[Fine Pinal,  As you mentioned this may be useful in some cases, I&#039;m interested to know if this feature is useful in real time any where. Can you or any one give a nice real time scenario where we can use this feature.]]></description>
		<content:encoded><![CDATA[<p>Fine Pinal,  As you mentioned this may be useful in some cases, I&#8217;m interested to know if this feature is useful in real time any where. Can you or any one give a nice real time scenario where we can use this feature.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Elam</title>
		<link>http://blog.sqlauthority.com/2011/11/09/sql-server-introduction-to-first-_value-and-last_value-analytic-functions-introduced-in-sql-server-2012/#comment-191322</link>
		<dc:creator><![CDATA[Elam]]></dc:creator>
		<pubDate>Wed, 09 Nov 2011 04:44:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15669#comment-191322</guid>
		<description><![CDATA[Nice feature..]]></description>
		<content:encoded><![CDATA[<p>Nice feature..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yeou Sunn Liu</title>
		<link>http://blog.sqlauthority.com/2011/11/09/sql-server-introduction-to-first-_value-and-last_value-analytic-functions-introduced-in-sql-server-2012/#comment-191289</link>
		<dc:creator><![CDATA[Yeou Sunn Liu]]></dc:creator>
		<pubDate>Wed, 09 Nov 2011 03:23:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=15669#comment-191289</guid>
		<description><![CDATA[Awesome sir. Excited to see more of the new features..]]></description>
		<content:encoded><![CDATA[<p>Awesome sir. Excited to see more of the new features..</p>
]]></content:encoded>
	</item>
</channel>
</rss>
