- How to do full joins in mysql? and what are the types of joins will support in mysql.
Im a begginer in mysql please help me solve this issue.
Thank you!

- 431
- 2
- 8
- 22
-
1I suggest you simply take a look into the documentation. Thanks. https://dev.mysql.com/doc/ – arkascha Oct 11 '16 at 10:36
-
1http://dev.mysql.com/doc/refman/5.7/en/join.html – rbr94 Oct 11 '16 at 10:36
-
1please dont mine...i want to know difference between outer join and full outer join.. – heart hacker Oct 11 '16 at 10:39
1 Answers
Before asking this question, I am assuming that you have not searched the net for anything at all, let alone MySQL documentation. Because I have asked stupid questions in the past (without researching enough), I am going to answer this one. By the way, this is a habit you must work upon. You should search for material, read and try solutions to your problems before coming to Stack Exchange.
Here's a snapshot from Official MySQL Documentation:
Apart from this, here are a few links that would help you understand JOINs, in general:
- Coding Horror's Visual Explanation of JOINs
- Stack Overflow - SQL JOINs and their types
- One of the most popular posts on Stack Overflow - Difference between Inner and Outer JOINs
I think this would suffice for the basic knowledge of JOINs. You'd have to read more about what JOIN to use when - based on the data you want to fetch and also how your database management system (in this case, MySQL) works with JOINs internally to optimize performance.

- 1
- 1

- 2,906
- 11
- 37
- 58
-
3Sorry , i searched but i can't understand .so don't mine .thank you @MontyPython – heart hacker Oct 11 '16 at 11:07
-
2That's perfectly alright. We're all here to learn and help each other :) – MontyPython Oct 11 '16 at 11:07
-
2
-
2
-
2