<?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/"
		>
<channel>
	<title>Comments on: Mimic The MySQL LIMIT Feature in Microsoft SQL Server</title>
	<atom:link href="http://www.tech-recipes.com/rx/1868/mimic_the_mysql_limit_feature_in_microsoft_sql_server/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tech-recipes.com/rx/1868/mimic_the_mysql_limit_feature_in_microsoft_sql_server/</link>
	<description>Computer and technology tutorials and guides</description>
	<lastBuildDate>Sat, 21 Nov 2009 16:14:40 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Chris</title>
		<link>http://www.tech-recipes.com/rx/1868/mimic_the_mysql_limit_feature_in_microsoft_sql_server/comment-page-1/#comment-15439</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Mon, 05 Oct 2009 15:56:09 +0000</pubDate>
		<guid isPermaLink="false">guid-fix-me!#comment-15439</guid>
		<description>Sure looks more like MySQL&#039;s limit, but when you have a huge table with millions of records, it takes ages to return the desired rows.</description>
		<content:encoded><![CDATA[<p>Sure looks more like MySQL&#39;s limit, but when you have a huge table with millions of records, it takes ages to return the desired rows.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Name</title>
		<link>http://www.tech-recipes.com/rx/1868/mimic_the_mysql_limit_feature_in_microsoft_sql_server/comment-page-1/#comment-14246</link>
		<dc:creator>Name</dc:creator>
		<pubDate>Thu, 13 Aug 2009 14:38:40 +0000</pubDate>
		<guid isPermaLink="false">guid-fix-me!#comment-14246</guid>
		<description>WITH temp AS&lt;br&gt;(SELECT *, ROW_NUMBER() OVER (ORDER BY OrderColumn) AS rownum&lt;br&gt;from MyTable)&lt;br&gt;SELECT * FROM temp WHERE rownum BETWEEN 0 AND 10&lt;br&gt;&lt;br&gt;Is better.</description>
		<content:encoded><![CDATA[<p>WITH temp AS<br />(SELECT *, ROW_NUMBER() OVER (ORDER BY OrderColumn) AS rownum<br />from MyTable)<br />SELECT * FROM temp WHERE rownum BETWEEN 0 AND 10</p>
<p>Is better.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kirill</title>
		<link>http://www.tech-recipes.com/rx/1868/mimic_the_mysql_limit_feature_in_microsoft_sql_server/comment-page-1/#comment-12303</link>
		<dc:creator>Kirill</dc:creator>
		<pubDate>Tue, 09 Jun 2009 22:10:14 +0000</pubDate>
		<guid isPermaLink="false">guid-fix-me!#comment-12303</guid>
		<description>Doesn&#039;t work for some reason... Logic is there, but pulls out always the first 10, even if you say you want between 20-30. Any ideas, why this concept isn&#039;t working?</description>
		<content:encoded><![CDATA[<p>Doesn&#39;t work for some reason&#8230; Logic is there, but pulls out always the first 10, even if you say you want between 20-30. Any ideas, why this concept isn&#39;t working?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
