How many types of JOIN are supported by MySQL? Which are they? Explain

Showing Answers 1 - 17 of 17 Answers

sanjay patil

  • Oct 26th, 2007
 

There are three types of joins supported in mysql as inner, right and left.
The inner join displays all the rows from both tables where match is found.
left join returns all the rows from first table even if the match is not found in second table.
While the right join returns all the rows from second table even if match is not found in first table.
Thanks

shriram

  • Jun 4th, 2015
 

Different types of joint are
Outer Join
Inner Join
Cross Join
Self Join
Union Join

  Was this answer useful?  Yes

Onkar Nath Maurya

  • May 29th, 2017
 

All type join supports in mysql
Inner join
Full join
Left join
Right join
Union join

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions