MySQL Forums
Forum List  »  InnoDB

Re: Right Self-joining
Posted by: KimSeong Loh
Date: June 08, 2005 07:35PM

from transactions t right join transactions t1 on (t1.trans_id = t.trans_id)

You try to right self join with the same column from the same table. This effectively gives you the same result as an INNER JOIN, because there will not be any non-matching row.

By the way, this forum is for Transaction, please use other more relevant forum to ask non transaction related question, too many of non transaction question here.

Options: ReplyQuote


Subject
Views
Written By
Posted
2688
June 08, 2005 10:15AM
Re: Right Self-joining
1916
June 08, 2005 07:35PM


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.