<?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: How to simulate FULL OUTER JOIN in MySQL</title>
	<atom:link href="http://www.xaprb.com/blog/2006/05/26/how-to-write-full-outer-join-in-mysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.xaprb.com/blog/2006/05/26/how-to-write-full-outer-join-in-mysql/</link>
	<description>Stay curious!</description>
	<lastBuildDate>Fri, 12 Mar 2010 01:22:18 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: stejan&#8217;s Baustelle &#187; Blog Archiv &#187; FULL JOIN in MySQL</title>
		<link>http://www.xaprb.com/blog/2006/05/26/how-to-write-full-outer-join-in-mysql/#comment-17354</link>
		<dc:creator>stejan&#8217;s Baustelle &#187; Blog Archiv &#187; FULL JOIN in MySQL</dc:creator>
		<pubDate>Tue, 01 Dec 2009 21:31:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.xaprb.com/blog/?p=155#comment-17354</guid>
		<description>[...] Dann gibt&#8217;s hier einige Lösungen. http://www.xaprb.com/blog/2006/05/26/how-to-write-full-outer-join-in-mysql/ [...]</description>
		<content:encoded><![CDATA[<p>[...] Dann gibt&#8217;s hier einige Lösungen. <a href="http://www.xaprb.com/blog/2006/05/26/how-to-write-full-outer-join-in-mysql/" rel="nofollow">http://www.xaprb.com/blog/2006/05/26/how-to-write-full-outer-join-in-mysql/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Inner Join vs. Left Outer Join vs. Right Outer Join vs. Full Outer Join Examples &#171; Learning Rails</title>
		<link>http://www.xaprb.com/blog/2006/05/26/how-to-write-full-outer-join-in-mysql/#comment-17277</link>
		<dc:creator>Inner Join vs. Left Outer Join vs. Right Outer Join vs. Full Outer Join Examples &#171; Learning Rails</dc:creator>
		<pubDate>Mon, 16 Nov 2009 22:25:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.xaprb.com/blog/?p=155#comment-17277</guid>
		<description>[...] MySQL does not support Full Outer Joins natively (there are some work-arounds).  However, it is roughly like the union of Left Outer Joins and Right Outer Joins according to what I have read.  See http://www.xaprb.com/blog/2006/05/26/how-to-write-full-outer-join-in-mysql/ [...]</description>
		<content:encoded><![CDATA[<p>[...] MySQL does not support Full Outer Joins natively (there are some work-arounds).  However, it is roughly like the union of Left Outer Joins and Right Outer Joins according to what I have read.  See <a href="http://www.xaprb.com/blog/2006/05/26/how-to-write-full-outer-join-in-mysql/" rel="nofollow">http://www.xaprb.com/blog/2006/05/26/how-to-write-full-outer-join-in-mysql/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: edward</title>
		<link>http://www.xaprb.com/blog/2006/05/26/how-to-write-full-outer-join-in-mysql/#comment-16742</link>
		<dc:creator>edward</dc:creator>
		<pubDate>Mon, 10 Aug 2009 19:36:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.xaprb.com/blog/?p=155#comment-16742</guid>
		<description>I got another solution

(in spanish)
http://disemq21.blogspot.com/2009/08/another-mysql-full-join.html


regards,
edward</description>
		<content:encoded><![CDATA[<p>I got another solution</p>
<p>(in spanish)<br />
<a href="http://disemq21.blogspot.com/2009/08/another-mysql-full-join.html" rel="nofollow">http://disemq21.blogspot.com/2009/08/another-mysql-full-join.html</a></p>
<p>regards,<br />
edward</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MySQL</title>
		<link>http://www.xaprb.com/blog/2006/05/26/how-to-write-full-outer-join-in-mysql/#comment-15884</link>
		<dc:creator>MySQL</dc:creator>
		<pubDate>Fri, 20 Feb 2009 15:59:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.xaprb.com/blog/?p=155#comment-15884</guid>
		<description>[...] correspondencia con la otra tabla. Sin embargo no estÃ¡ implementada en MySQL, aunque podemos simularla con UNION ALL (UNION se utiliza para combinar los resultados de varios SELECT; la palabra clave ALL tiene el [...]</description>
		<content:encoded><![CDATA[<p>[...] correspondencia con la otra tabla. Sin embargo no estÃ¡ implementada en MySQL, aunque podemos simularla con UNION ALL (UNION se utiliza para combinar los resultados de varios SELECT; la palabra clave ALL tiene el [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mauricio</title>
		<link>http://www.xaprb.com/blog/2006/05/26/how-to-write-full-outer-join-in-mysql/#comment-15697</link>
		<dc:creator>mauricio</dc:creator>
		<pubDate>Mon, 19 Jan 2009 17:46:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.xaprb.com/blog/?p=155#comment-15697</guid>
		<description>i believe there is one more way to do it, something like this:

SELECT * 
FROM apples AS a
    LEFT OUTER JOIN
    (
     SELECT o2.* 
     FROM apples AS a
     RIGHT OUTER JOIN oranges AS o2 
     ON a.price = o2.price
    ) AS o ON a.price = o.price</description>
		<content:encoded><![CDATA[<p>i believe there is one more way to do it, something like this:</p>
<p>SELECT *<br />
FROM apples AS a<br />
    LEFT OUTER JOIN<br />
    (<br />
     SELECT o2.*<br />
     FROM apples AS a<br />
     RIGHT OUTER JOIN oranges AS o2<br />
     ON a.price = o2.price<br />
    ) AS o ON a.price = o.price</p>
]]></content:encoded>
	</item>
</channel>
</rss>
