MySQL Forums
Forum List  »  Newbie

Re: Get all Child nodes and check for duplicate or repeated
Posted by: Peter Brawley
Date: January 19, 2017 08:41AM

select a.product_id
from a join b using(product_id)
union
select b.subproduct_id
from a join b using(product_id) ;

Options: ReplyQuote


Subject
Written By
Posted
Re: Get all Child nodes and check for duplicate or repeated
January 19, 2017 08:41AM


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.