<?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: 10 things in MySQL (that won&#8217;t work as expected)</title>
	<atom:link href="http://explainextended.com/2010/11/03/10-things-in-mysql-that-wont-work-as-expected/feed/" rel="self" type="application/rss+xml" />
	<link>http://explainextended.com/2010/11/03/10-things-in-mysql-that-wont-work-as-expected/</link>
	<description>How to create fast database queries</description>
	<lastBuildDate>Thu, 16 May 2013 00:03:49 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: akC</title>
		<link>http://explainextended.com/2010/11/03/10-things-in-mysql-that-wont-work-as-expected/comment-page-1/#comment-2357</link>
		<dc:creator>akC</dc:creator>
		<pubDate>Mon, 24 Dec 2012 10:41:15 +0000</pubDate>
		<guid isPermaLink="false">http://explainextended.com/?p=5003#comment-2357</guid>
		<description><![CDATA[Thanx alot!!! I was breaking my nuts on a query and your point #9 &amp; #1 helped me out. Phewww!!]]></description>
		<content:encoded><![CDATA[<p>Thanx alot!!! I was breaking my nuts on a query and your point #9 &amp; #1 helped me out. Phewww!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy</title>
		<link>http://explainextended.com/2010/11/03/10-things-in-mysql-that-wont-work-as-expected/comment-page-1/#comment-2138</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Mon, 20 Aug 2012 17:36:02 +0000</pubDate>
		<guid isPermaLink="false">http://explainextended.com/?p=5003#comment-2138</guid>
		<description><![CDATA[Nice work but the picture titles and descriptions are really confusing. Other than that, a great photo blog.]]></description>
		<content:encoded><![CDATA[<p>Nice work but the picture titles and descriptions are really confusing. Other than that, a great photo blog.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim</title>
		<link>http://explainextended.com/2010/11/03/10-things-in-mysql-that-wont-work-as-expected/comment-page-1/#comment-2009</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Wed, 13 Jun 2012 11:26:09 +0000</pubDate>
		<guid isPermaLink="false">http://explainextended.com/?p=5003#comment-2009</guid>
		<description><![CDATA[Hmm .. easy to do with a few fixed values, a little harder with a random number of items to search for.
But thanks for the pointer]]></description>
		<content:encoded><![CDATA[<p>Hmm .. easy to do with a few fixed values, a little harder with a random number of items to search for.<br />
But thanks for the pointer</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Quassnoi</title>
		<link>http://explainextended.com/2010/11/03/10-things-in-mysql-that-wont-work-as-expected/comment-page-1/#comment-2008</link>
		<dc:creator>Quassnoi</dc:creator>
		<pubDate>Wed, 13 Jun 2012 06:05:24 +0000</pubDate>
		<guid isPermaLink="false">http://explainextended.com/?p=5003#comment-2008</guid>
		<description><![CDATA[@Tim: this way:

&lt;pre&gt;
SELECT  a.*
FROM    (
        SELECT  3 id, 1 o
        UNION ALL
        SELECT  1 id, 2 o
        UNION ALL
        SELECT  2 id, 3 o
        ) q
JOIN    a
ON      a.column = q.id
ORDER BY
        o
&lt;/pre&gt;
]]></description>
		<content:encoded><![CDATA[<p>@Tim: this way:</p>
<pre>
SELECT  a.*
FROM    (
        SELECT  3 id, 1 o
        UNION ALL
        SELECT  1 id, 2 o
        UNION ALL
        SELECT  2 id, 3 o
        ) q
JOIN    a
ON      a.column = q.id
ORDER BY
        o
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim</title>
		<link>http://explainextended.com/2010/11/03/10-things-in-mysql-that-wont-work-as-expected/comment-page-1/#comment-2004</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Tue, 12 Jun 2012 10:20:18 +0000</pubDate>
		<guid isPermaLink="false">http://explainextended.com/?p=5003#comment-2004</guid>
		<description><![CDATA[Is it possible to do
&gt;SELECT *
&gt;FROM a
&gt;WHERE column IN (3, 1, 2)

and get the values back in the list order? MySQL seems to always order ascending - I&#039;m guessing it&#039;s to do with the way it searches the database for the list values]]></description>
		<content:encoded><![CDATA[<p>Is it possible to do<br />
&gt;SELECT *<br />
&gt;FROM a<br />
&gt;WHERE column IN (3, 1, 2)</p>
<p>and get the values back in the list order? MySQL seems to always order ascending &#8211; I&#8217;m guessing it&#8217;s to do with the way it searches the database for the list values</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Saji Nediyanchath</title>
		<link>http://explainextended.com/2010/11/03/10-things-in-mysql-that-wont-work-as-expected/comment-page-1/#comment-1357</link>
		<dc:creator>Saji Nediyanchath</dc:creator>
		<pubDate>Tue, 20 Dec 2011 04:31:53 +0000</pubDate>
		<guid isPermaLink="false">http://explainextended.com/?p=5003#comment-1357</guid>
		<description><![CDATA[Really useful. Thanks a lot.]]></description>
		<content:encoded><![CDATA[<p>Really useful. Thanks a lot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Quassnoi</title>
		<link>http://explainextended.com/2010/11/03/10-things-in-mysql-that-wont-work-as-expected/comment-page-1/#comment-926</link>
		<dc:creator>Quassnoi</dc:creator>
		<pubDate>Tue, 26 Jul 2011 22:41:43 +0000</pubDate>
		<guid isPermaLink="false">http://explainextended.com/?p=5003#comment-926</guid>
		<description><![CDATA[@Sinead: it does, in special cases.]]></description>
		<content:encoded><![CDATA[<p>@Sinead: it does, in special cases.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sinead O'Connor</title>
		<link>http://explainextended.com/2010/11/03/10-things-in-mysql-that-wont-work-as-expected/comment-page-1/#comment-925</link>
		<dc:creator>Sinead O'Connor</dc:creator>
		<pubDate>Tue, 26 Jul 2011 21:46:24 +0000</pubDate>
		<guid isPermaLink="false">http://explainextended.com/?p=5003#comment-925</guid>
		<description><![CDATA[about #10: &quot;nooooothing compares, nothing compares.. to null&quot;]]></description>
		<content:encoded><![CDATA[<p>about #10: &#8220;nooooothing compares, nothing compares.. to null&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kcko</title>
		<link>http://explainextended.com/2010/11/03/10-things-in-mysql-that-wont-work-as-expected/comment-page-1/#comment-765</link>
		<dc:creator>Kcko</dc:creator>
		<pubDate>Wed, 20 Apr 2011 14:21:18 +0000</pubDate>
		<guid isPermaLink="false">http://explainextended.com/?p=5003#comment-765</guid>
		<description><![CDATA[Usefull. Thx!]]></description>
		<content:encoded><![CDATA[<p>Usefull. Thx!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AbiusX</title>
		<link>http://explainextended.com/2010/11/03/10-things-in-mysql-that-wont-work-as-expected/comment-page-1/#comment-741</link>
		<dc:creator>AbiusX</dc:creator>
		<pubDate>Mon, 28 Mar 2011 02:40:08 +0000</pubDate>
		<guid isPermaLink="false">http://explainextended.com/?p=5003#comment-741</guid>
		<description><![CDATA[nice :D]]></description>
		<content:encoded><![CDATA[<p>nice :D</p>
]]></content:encoded>
	</item>
</channel>
</rss>
