MySQL Forums
Forum List  »  Optimizer & Parser

Re: Call out for FULL JOIN - bug #18003
Posted by: ted strauss
Date: June 14, 2012 12:13PM

Just to clarify what is meant by FULL JOIN, here's an example from postgres.
Sometimes called FULL OUTER JOIN

=> SELECT * FROM t1 FULL JOIN t2 ON t1.num = t2.num;
num | name | num | value
-----+------+-----+-------
1 | a | 1 | xxx
2 | b | |
3 | c | 3 | yyy
| | 5 | zzz


reference: http://www.postgresql.org/docs/8.0/static/queries-table-expressions.html

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: Call out for FULL JOIN - bug #18003
1053
June 14, 2012 12:13PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.