INNER JOIN
The inner JOIN is used to return rows from both tables that satisfy the given condition.
Cross JOIN is a simplest form of JOINs which matches each row from one database table to all rows of another. In other words it gives us combinations of each row of first table with all records in second table. Suppose we want to get all member records against all the movie records, we can use the script shown below to get our desired results.
Executing the above script in MySQL workbench gives us the following results. Suppose , you want to get list of members who have rented movies together with titles of movies rented by them. You can simply use an INNER JOIN for that, which returns rows from both tables that satisfy with given conditions.
Executing the above script give Note the above results script can also be written as follows to achieve the same results.
Outer JOINs
MySQL Outer JOINs return all records matching from both tables . It can detect records having no match in joined table. It returns NULL values for records of joined table if no match is found. Sounds Confusing ? Let’s look into an example –
LEFT JOIN
Assume now you want to get titles of all movies together with names of members who have rented them. It is clear that some movies have not being rented by any one. We can simply use LEFT JOIN for the purpose.
The LEFT JOIN returns all the rows from the table on the left even if no matching rows have been found in the table on the right. Where no matches have been found in the table on the right, NULL is returned. Executing the above script in MySQL workbench gives.You can see that in the returned result which is listed below that for movies which are not rented, member name fields are having NULL values. That means no matching member found members table for that particular movie.
RIGHT JOIN
RIGHT JOIN is obviously the opposite of LEFT JOIN. The RIGHT JOIN returns all the columns from the table on the right even if no matching rows have been found in the table on the left. Where no matches have been found in the table on the left, NULL is returned. In our example, let’s assume that you need to get names of members and movies rented by them. Now we have a new member who has not rented any movie yet
Executing the above script in MySQL workbench gives the following results.
“ON” and “USING” clauses
In above JOIN query examples, we have used ON clause to match the records between table. USING clause can also be used for the same purpose. The difference with USING is it needs to have identical names for matched columns in both tables. In “movies” table so far we used its primary key with the name “id”. We referred to same in “members” table with the name “movie_id”. Let’s rename “movies” tables “id” field to have the name “movie_id”. We do this in order to have identical matched field names. Next let’s use USING with above LEFT JOIN example. Apart from using ON and USING with JOINs you can use many other MySQL clauses like GROUP BY, WHERE and even functions like SUM, AVG, etc.
Why should we use joins?
Now you may think, why we use JOINs when we can do the same task running queries. Especially if you have some experience in database programming you know we can run queries one by one, use output of each in successive queries. Of course, that is possible. But using JOINs, you can get the work done by using only a one query with any search parameters. On the other hand MySQL can achieve better performance with JOINs as it can use Indexing. Simply use of single JOIN query instead running multiple queries do reduce server overhead. Using multiple queries instead that leads more data transfers between MySQL and applications (software). Further it requires more data manipulations in application end also. It is clear that we can achieve better MySQL and application performances by use of JOINs.
Summary
JOINS allow us to combine data from more than one table into a single result set.
JOINS have better performance compared to sub queries
INNER JOINS only return rows that meet the given criteria.
OUTER JOINS can also return rows where no matches have been found. The unmatched rows are returned with the NULL keyword.
The major JOIN types include Inner, Left Outer, Right Outer, Cross JOINS etc.
The frequently used clause in JOIN operations is “ON”. “USING” clause requires that matching columns be of the same name.
JOINS can also be used in other clauses such as GROUP BY, WHERE, SUB QUERIES, AGGREGATE FUNCTIONS etc.