Php-mysql Course

The JOIN command combines records from two tables by using values common to each. Usually, it is used an ID column in both tables that associates their values.
There are various types of JOINs: INNER JOIN, LEFT JOIN, RIGHT JOIN; they are used with an ON clause that sets the join condition.

- In the examples presented in this tutorial we'll use the following two tables, named "categories" and "links".
categories
idcategory
1 PHP-MySQL
2 HTML
3 JavaScript
links
idlink
1 https://coursesweb.net/php-mysql/arrays
1 https://coursesweb.net/php-mysql/strings
2 https://coursesweb.net/html/html-tables

INNER JOIN

INNER JOIN returns rows when there is at least one match in both tables (can be regarded as the default join-type).
Syntax:
SELECT column(s) FROM `table1` INNER JOIN `table2` ON `table1`.`column`=`table2`.`column`
If there are rows in "table1.column" that do not have matches in "table2.column", those rows will NOT be listed.

- Example: Select the "category" column from 'categories', and the "link" column from the 'links' table, where the value of the "id" columns is the same in both tables, ordered by "category".
SELECT `categories`.`category`, `links`.`link` FROM `categories` INNER JOIN `links` ON `categories`.`id`=`links`.`id` ORDER BY `categories`.`category`
Result:
|  category |                link                  |
----------------------------------------------------
| HTML      | https://coursesweb.net/html/html-tables  |
| PHP-MySQL | https://coursesweb.net/php-mysql/arrays  |
| PHP-MySQL | https://coursesweb.net/php-mysql/strings |

• INNER JOIN is the same as JOIN, and can also be replaced with a WHERE clause. So, the following queries returns the same results as the example above.
- Without the INNER keyword:
SELECT `categories`.`category`, `links`.`link` FROM `categories` JOIN `links` ON `categories`.`id`=`links`.`id` ORDER BY `categories`.`category`
- Or, with WHERE:
SELECT `categories`.`category`, `links`.`link` FROM `categories`, `links` WHERE `categories`.`id`=`links`.`id` ORDER BY `categories`.`category`

LEFT JOIN

The LEFT JOIN returns all rows from the "left" table (table1), even if the join-condition does not find any matching record in the "right" table (table2).
Syntax:
SELECT column(s) FROM `table1` LEFT JOIN `table2` ON `table1`.`column`=`table2`.`column`
If there is no matching row for the "table2" in the ON part, the join will still return a row in the result, but with NULL in each column from "table2".

Example: We select again the "category" column from 'categories', and the "link" column from the 'links' table, where the value of the "id" columns is the same in both tables, but this time using LEFT JOIN.
SELECT `categories`.`category`, `links`.`link` FROM `categories` LEFT JOIN `links` ON `categories`.`id`=`links`.`id` ORDER BY `categories`.`category`
Result (compare with the result of the example above to see the diference):
|  category  |               link                   |
-----------------------------------------------------
| HTML       | https://coursesweb.net/html/html-tables  |
| JavaScript | NULL                                 |
| PHP-MySQL  | https://coursesweb.net/php-mysql/arrays  |
| PHP-MySQL  | https://coursesweb.net/php-mysql/strings |

• Because LEFT JOIN returns all the rows from the left table (categories), even if there are no matches in the right table (links), we can use this fact to find rows in a table that have no counterpart in another table.
In the next example we'll find all rows in "categories" with an "id" value that is not present in "links" table:
SELECT `categories`.* FROM `categories` LEFT JOIN `links` ON `categories`.`id`=`links`.`id` WHERE `links`.`id` IS NULL
Result:
| id |  category  |
-------------------
| 3  | JavaScript |

RIGHT JOIN

The RIGHT JOIN returns all the values from the "right" table (table2) and matched values from the "left" table (table1) (NULL in case of no matching join predicate).
Syntax:
SELECT column(s) FROM `table1` RIGHT JOIN `table2` ON `table1`.`column`=`table2`.`column`

Example: We select again the "category" column from 'categories', and the "link" column from the 'links' table, where the value of the "id" columns is the same in both tables, but this time using RIGHT JOIN.
SELECT `categories`.`category`, `links`.`link` FROM `categories` RIGHT JOIN `links` ON `categories`.`id`=`links`.`id` ORDER BY `categories`.`category`
Result (compare with the result of the example above to see the diference):
|  category  |               link                   |
-----------------------------------------------------
| HTML       | https://coursesweb.net/html/html-tables  |
| PHP-MySQL  | https://coursesweb.net/php-mysql/arrays  |
| PHP-MySQL  | https://coursesweb.net/php-mysql/strings |

• In practice, RIGHT JOIN is rarely used, since it can always be replaced with LEFT JOIN (with the table order switched). The result above is produced also with a LEFT JOIN:
SELECT `categories`.`category`, `links`.`link` FROM `links` LEFT JOIN `categories` ON `categories`.`id`=`links`.`id` ORDER BY `categories`.`category`

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
Which attribute is used in <a> tag for the address of the link?
src href rel
<a href="http://coursesweb.net/" title="CoursesWeb.net">CoursesWeb.net</a>
Which CSS property sets the type of the text font?
font-family text-decoration font-size
h2 {
  font-family:"Calibri",sans-serif;
}
What instruction selects all the <div> tags with class="cls"?
querySelector("div.cls") getElementsByTagName("div") querySelectorAll("div.cls")
var elm_list = document.querySelectorAll("div.cls");
var nr_elms = elm_list.length;       // number of selected items
alert(nr_elms);
Indicate the function that can be used to get the sum of values in an array.
array_sum() array_diff() array_shift()
$arr =[1, 2, 3, 4);
$arr_sum = array_sum($arr);
echo $arr_sum;       // 10
MySQL INNER JOIN, LEFT JOIN, RIGHT JOIN

Last accessed pages

  1. MSLA2 - Filter Content with Multiple Select Lists with Ajax (2484)
  2. Redirects (4769)
  3. innerHTML and outerHTML to Get and Replace HTML content (30477)
  4. PuzzleImg - Script to Create Image Puzzle Game (9383)
  5. Add and Remove HTML elements and Content with jQuery (30919)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (457)
  2. Read Excel file data in PHP - PhpExcelReader (144)
  3. PHP Unzipper - Extract Zip, Rar Archives (143)
  4. SHA1 Encrypt data in JavaScript (117)
  5. Get and Modify content of an Iframe (103)
Chat
Chat or leave a message for the other users
Full screenInchide