Comments on: How to simulate FULL OUTER JOIN in MySQL http://www.xaprb.com/blog/2006/05/26/how-to-write-full-outer-join-in-mysql/ Stay curious! Mon, 13 May 2013 05:55:40 +0000 hourly 1 http://wordpress.org/?v=3.5.1 By: Will http://www.xaprb.com/blog/2006/05/26/how-to-write-full-outer-join-in-mysql/#comment-20288 Will Wed, 26 Sep 2012 15:25:01 +0000 http://www.xaprb.com/blog/?p=155#comment-20288 Does this mutex table work with left joining 3 different tables? I would like to join table 1 and 2 together, and join table 2 and 3 together, and then display all the rows from those 2 result tables, each row will has its own lines.

I am not sure if I explained it properly. :) Please let me know if not, I will try to give an example. Thank you so much for your help. D

]]>
By: carrie http://www.xaprb.com/blog/2006/05/26/how-to-write-full-outer-join-in-mysql/#comment-19943 carrie Mon, 26 Mar 2012 16:27:47 +0000 http://www.xaprb.com/blog/?p=155#comment-19943 helpful article. thanks for sharing

]]>
By: vijay kulkarni http://www.xaprb.com/blog/2006/05/26/how-to-write-full-outer-join-in-mysql/#comment-19805 vijay kulkarni Mon, 02 Jan 2012 06:22:13 +0000 http://www.xaprb.com/blog/?p=155#comment-19805 thanks a lot, it helped me a lot

]]>
By: JD http://www.xaprb.com/blog/2006/05/26/how-to-write-full-outer-join-in-mysql/#comment-19169 JD Mon, 21 Feb 2011 16:06:47 +0000 http://www.xaprb.com/blog/?p=155#comment-19169 can method 3 be extended to an n-way join?

how about joins with many-to-many relationships where i want all results including results where either table has no match in the join table?

how about an n-way full outer join including many-to-many relationships between multiple tables?

this last one is actually my case (4 tables linked by 3 join tables for which i want all combinations of all results including results in tables with no matches to any other).

]]>
By: Mike S http://www.xaprb.com/blog/2006/05/26/how-to-write-full-outer-join-in-mysql/#comment-19010 Mike S Tue, 28 Dec 2010 03:17:31 +0000 http://www.xaprb.com/blog/?p=155#comment-19010 left join + union + right join TRICK in MySQL does not work properly, or does not result as expected.
what UNION does is combined x field with y field which is not right.

]]>