<?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: Covering index and prefix indexes</title>
	<atom:link href="http://www.mysqlperformanceblog.com/2006/11/23/covering-index-and-prefix-indexes/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mysqlperformanceblog.com/2006/11/23/covering-index-and-prefix-indexes/</link>
	<description>Percona&#039;s MySQL &#38; InnoDB performance and scalability blog</description>
	<lastBuildDate>Sat, 11 Feb 2012 16:45:54 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: L.A</title>
		<link>http://www.mysqlperformanceblog.com/2006/11/23/covering-index-and-prefix-indexes/comment-page-1/#comment-805109</link>
		<dc:creator>L.A</dc:creator>
		<pubDate>Tue, 19 Apr 2011 16:42:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2006/11/23/covering-index-and-prefix-indexes/#comment-805109</guid>
		<description>I have a few questions about your last query:

First, in your explain output, you have 

key: i

but &quot;extra&quot; doesn&#039;t say &quot;using index&quot;. If index is not used, shouldn&#039;t you be getting key: null?
Or does it mean that index is being used, just not the optimal one?

Second, how would you change your indexing so that your last query would work optimally?

Thanks.</description>
		<content:encoded><![CDATA[<p>I have a few questions about your last query:</p>
<p>First, in your explain output, you have </p>
<p>key: i</p>
<p>but &#8220;extra&#8221; doesn&#8217;t say &#8220;using index&#8221;. If index is not used, shouldn&#8217;t you be getting key: null?<br />
Or does it mean that index is being used, just not the optimal one?</p>
<p>Second, how would you change your indexing so that your last query would work optimally?</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: The MySQL Query Performance Improvement Process &#124; Pablowe</title>
		<link>http://www.mysqlperformanceblog.com/2006/11/23/covering-index-and-prefix-indexes/comment-page-1/#comment-339631</link>
		<dc:creator>The MySQL Query Performance Improvement Process &#124; Pablowe</dc:creator>
		<pubDate>Sun, 03 Aug 2008 22:28:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2006/11/23/covering-index-and-prefix-indexes/#comment-339631</guid>
		<description>[...] can bog down the network if the unneeded columns are large, and eliminate the possibility of using covering indexes that could eliminate the need to read from disk when retrieving the result set. Additionally, a [...]</description>
		<content:encoded><![CDATA[<p>[...] can bog down the network if the unneeded columns are large, and eliminate the possibility of using covering indexes that could eliminate the need to read from disk when retrieving the result set. Additionally, a [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: peter</title>
		<link>http://www.mysqlperformanceblog.com/2006/11/23/covering-index-and-prefix-indexes/comment-page-1/#comment-14586</link>
		<dc:creator>peter</dc:creator>
		<pubDate>Fri, 24 Nov 2006 08:42:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2006/11/23/covering-index-and-prefix-indexes/#comment-14586</guid>
		<description>Oh yes. Sorry that is what I meant.   Fixed now</description>
		<content:encoded><![CDATA[<p>Oh yes. Sorry that is what I meant.   Fixed now</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Maarten</title>
		<link>http://www.mysqlperformanceblog.com/2006/11/23/covering-index-and-prefix-indexes/comment-page-1/#comment-14579</link>
		<dc:creator>Maarten</dc:creator>
		<pubDate>Fri, 24 Nov 2006 08:15:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2006/11/23/covering-index-and-prefix-indexes/#comment-14579</guid>
		<description>The query of you&#039;re last example reeds EXPLAIN SELECT j FROM t WHERE i=5 AND k LIKE &quot;a%&quot;, but don&#039;t you mean EXPLAIN SELECT k FROM t WHERE i=5 AND j LIKE &quot;a%&quot; ?</description>
		<content:encoded><![CDATA[<p>The query of you&#8217;re last example reeds EXPLAIN SELECT j FROM t WHERE i=5 AND k LIKE &#8220;a%&#8221;, but don&#8217;t you mean EXPLAIN SELECT k FROM t WHERE i=5 AND j LIKE &#8220;a%&#8221; ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: L.A</title>
		<link>http://www.mysqlperformanceblog.com/2006/11/23/covering-index-and-prefix-indexes/comment-page-1/#comment-806375</link>
		<dc:creator>L.A</dc:creator>
		<pubDate>Thu, 23 Nov 2006 07:00:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2006/11/23/covering-index-and-prefix-indexes/#comment-806375</guid>
		<description>&lt;div class=&quot;item-body&quot;&gt;&lt;p&gt;I have a few questions about your last query:&lt;/p&gt;
&lt;p&gt;First, in your explain output, you have &lt;/p&gt;
&lt;p&gt;key: i&lt;/p&gt;
&lt;p&gt;but &#8220;extra&#8221; doesn&#8217;t say &#8220;using index&#8221;. If index is not used, shouldn&#8217;t you be getting key: null?&lt;br&gt;
Or does it mean that index is being used, just not the optimal one?&lt;/p&gt;
&lt;p&gt;Second, how would you change your indexing so that your last query would work optimally?&lt;/p&gt;
&lt;p&gt;Thanks.&lt;/p&gt;
&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;&lt;/div&gt;
</description>
		<content:encoded><![CDATA[<div class="item-body">
<p>I have a few questions about your last query:</p>
<p>First, in your explain output, you have </p>
<p>key: i</p>
<p>but &ldquo;extra&rdquo; doesn&rsquo;t say &ldquo;using index&rdquo;. If index is not used, shouldn&rsquo;t you be getting key: null?<br />
Or does it mean that index is being used, just not the optimal one?</p>
<p>Second, how would you change your indexing so that your last query would work optimally?</p>
<p>Thanks.</p>
<div class="clear"></div>
</div>
]]></content:encoded>
	</item>
</channel>
</rss>

