<?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: Sargability of monotonic functions: example</title>
	<atom:link href="http://explainextended.com/2010/02/23/sargability-of-monotonic-functions-example/feed/" rel="self" type="application/rss+xml" />
	<link>http://explainextended.com/2010/02/23/sargability-of-monotonic-functions-example/</link>
	<description>How to create fast database queries</description>
	<lastBuildDate>Sun, 15 Apr 2012 12:14:02 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Quassnoi</title>
		<link>http://explainextended.com/2010/02/23/sargability-of-monotonic-functions-example/comment-page-1/#comment-203</link>
		<dc:creator>Quassnoi</dc:creator>
		<pubDate>Thu, 14 Oct 2010 12:33:15 +0000</pubDate>
		<guid isPermaLink="false">http://explainextended.com/?p=4407#comment-203</guid>
		<description>@satek: because this way you will need a separate index for each function you are going to filter on in your query.

The point is that you can filter on &lt;code&gt;sin(value)&lt;/code&gt;, as well as any other monotonic function, using an index on &lt;code&gt;value&lt;/code&gt;.

Read the original article: http://explainextended.com/2010/02/19/things-sql-needs-sargability-of-monotonic-functions/</description>
		<content:encoded><![CDATA[<p>@satek: because this way you will need a separate index for each function you are going to filter on in your query.</p>
<p>The point is that you can filter on <code>sin(value)</code>, as well as any other monotonic function, using an index on <code>value</code>.</p>
<p>Read the original article: <a href="http://explainextended.com/2010/02/19/things-sql-needs-sargability-of-monotonic-functions/" rel="nofollow">http://explainextended.com/2010/02/19/things-sql-needs-sargability-of-monotonic-functions/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: satek</title>
		<link>http://explainextended.com/2010/02/23/sargability-of-monotonic-functions-example/comment-page-1/#comment-202</link>
		<dc:creator>satek</dc:creator>
		<pubDate>Thu, 14 Oct 2010 12:08:45 +0000</pubDate>
		<guid isPermaLink="false">http://explainextended.com/?p=4407#comment-202</guid>
		<description>Why not use functional index?

create index sin_idx on t_sin(sin(value));</description>
		<content:encoded><![CDATA[<p>Why not use functional index?</p>
<p>create index sin_idx on t_sin(sin(value));</p>
]]></content:encoded>
	</item>
</channel>
</rss>

