Mysql 連接的使用


Mysql 連接的使用

在前幾章節中,我們已經學會瞭如何在一張表中讀取數據,這是相對簡單的,但是在真正的應用中經常需要從多個資料表中讀取資料。

本章節我們將向大家介紹如何使用 MySQL 的 JOIN 在兩個或多個表格中查詢資料。

你可以在 SELECT, UPDATE 和 DELETE 語句中使用 Mysql 的 JOIN 來聯合多表查詢。

JOIN 依功能大致分為以下三類:

  • #INNER JOIN(內連接,或等值連接):取得兩個表中字段匹配關係的記錄。

  • LEFT JOIN(左連接):取得左表所有記錄,即使右表沒有對應符合的記錄。

  • RIGHT JOIN(右連接): 與 LEFT JOIN 相反,用於取得右表所有記錄,即使左表沒有對應的記錄。

本章節所使用的資料庫架構及資料下載:php.sql。

在命令提示字元中使用 INNER JOIN

我們在PHP資料庫中有兩張表 tcount_tbl 和php_tbl。兩個資料表資料如下:

實例

嘗試下列實例:

測試實例資料

mysql> use php;
Database changed
mysql> SELECT * FROM tcount_tbl;
+---------------+--------------+
| php_author | php_count |
+---------------+--------------+
| PHP中文网  | 10           |
| PHP.CN    | 20           |
| Google        | 22           |
+---------------+--------------+
3 rows in set (0.01 sec)
 mysql> SELECT * from php_tbl;
+-----------+---------------+---------------+-----------------+
| php_id | php_title  | php_author | submission_date |
+-----------+---------------+---------------+-----------------+
| 1         | 学习 PHP    | PHP中文网  | 2017-04-12      |
| 2         | 学习 MySQL  | PHP中文网   | 2017-04-12      |
| 3         | 学习 Java   | PHP.CN    | 2015-05-01      |
| 4         | 学习 Python | PHP.CN      | 2016-03-06      |
| 5         | 学习 C      | PHP           | 2017-04-05 |
+-----------+---------------+---------------+-----------------+
5 rows in set (0.01 sec)

接下來我們就使用MySQL的INNER JOIN(也可以省略INNER 使用JOIN,效果一樣)來連接以上兩張表來讀取php_tbl表中所有php_author字段在tcount_tbl表對應的php_count字段值:

INNER JOIN

mysql> SELECT a.php_id, a.user_author, b.user_count
 FROM user_tbl a INNER JOIN tcount_tbl b ON a.user_author = b.user_author;
+-------------+-----------------+----------------+
| a.user_id | a.user_author | b.user_count |
+-------------+-----------------+----------------+
| 1           | PHP中文网    | 10             |
| 2           | PHP中文网     | 10             |
| 3           | PHP.CN     | 20             |
| 4           | PHP.CN      | 20             |
+-------------+-----------------+----------------+
 4 rows in set (0.00 sec)

以上SQL 語句等價於:

WHERE 子句

mysql> SELECT a.user_id, a.user_author, b.user_count
 FROM user_tbl a, tcount_tbl b WHERE a.user_author = b.user_author;
+-------------+-----------------+----------------+
| a.user_id | a.user_author | b.user_count |
+-------------+-----------------+----------------+
| 1           | PHP中文网  | 10             |
| 2           | PHP中文网      | 10             |
| 3           |PHP.CN      | 20             |
| 4           | PHP.CN      | 20             |
+-------------+-----------------+----------------+
 4 rows in set (0.01 sec)

img_innerjoin.gif

#MySQL LEFT JOIN

MySQL left join 與join 有所不同。 MySQL LEFT JOIN 會讀取左邊數據表的全部數據,即便右邊表無對應數據。

實例

嘗試下列實例,以php_tbl 為左表,tcount_tbl 為右表,並瞭解MySQL LEFT JOIN 的應用:

RIGHT JOIN
mysql> SELECT a.user_id, a.user_author, b.user_count 
FROM user_tbl a RIGHT JOIN tcount_tbl b ON a.user_author = b.user_author;
+-------------+-----------------+----------------+
| a.user_id | a.user_author | b.user_count |
+-------------+-----------------+----------------+
| 1           | PHP中文网    | 10             |
| 2           | PHP中文网   | 10             |
| 3           | PHP.CN      | 20             |
| 4           | PHP.CN        | 20             |
| NULL        | NULL            | 22             |
+-------------+-----------------+----------------+
5 rows in set (0.01 sec)

以上實例中使用了RIGHT JOIN,語句會讀取右邊的數據表tcount_tbl 的所有選取的欄位數據,即便在左側表php_tbl 中沒有對應的php_author 欄位值。

img_leftjoin.gif

MySQL RIGHT JOIN

MySQL RIGHT JOIN 會讀取右邊資料表的全部數據,即便左邊邊表無對應數據。

實例

嘗試以下實例,以 php_tbl 為左表,tcount_tbl 為右表,理解MySQL RIGHT JOIN的應用:

RIGHT JOIN
mysql> SELECT a.user_id, a.user_author, b.user_count
 FROM user_tbl a RIGHT JOIN tcount_tbl b ON a.user_author = b.user_author;
+-------------+-----------------+----------------+
| a.user_id | a.user_author | b.user_count |
+-------------+-----------------+----------------+
| 1           | PHP中文网   | 10             |
| 2           | PHP中文网    | 10             |
| 3           |PHP.CN     | 20             |
| 4           | PHP.CN    | 20             |
| NULL        | NULL            | 22             |
+-------------+-----------------+----------------+5 rows in set (0.01 sec)

以上實例中使用了RIGHT JOIN,此語句會讀取右邊的資料表tcount_tbl 的所有選取的欄位數據,即便在左側表user_tbl 中沒有對應的user_author 欄位值。

img_rightjoin.gif

在PHP 腳本中使用JOIN

PHP 中使用mysqli_query() 函數來執行SQL 語句,你可以使用以上相同的SQL 語句作為mysqli_query() 函數的參數。

嘗試如下實例:

<?php
header("Content-Type: text/html;charset=utf-8");

#$dbhost = 'localhost';  // mysql伺服器主機位址
$dbuser = 'root';                    
$conn = mysqli_connect($dbhost, $dbuser, $dbpass);
if(! $conn )
{
#    die('連線失敗: ' . mysqli_error($conn));
> #// 設定編碼,防止中文亂碼
mysqli_query($conn , "set names utf8");
 
$sql = 'SELECT a.php_id, H JOIN tcount_tbl b ON a.php_author = b.php_author';
 
mysqli_select_db( $conn, 'php' );##1$ $retval )
{
    die('無法讀取資料: ' . mysqli_error($conn));
}
echo '<h2>PHP中文網 MySQL<JOIN 測試測試& JOIN 測試); ';
echo '<table border="1"><tr><td>教程 ID</td><td>作者</td><td>登陸次數</ td></tr>';
while($row = mysqli_fetch_array($retval, MYSQL_ASSOC))
{
#    echo "<tr><td>td> }</td> ".
         "<td>{$row['php_author']} </td> ".
  ;/td> ".
         "</tr>";
}
echo '</table>';
mysqli_close
echo '</table>';
mysqli_close
echo '</table>';
mysqli_close($conn);
#.
#

效果圖:

Image 3.jpg

#相關影片教學推薦:##MySQL 連線的概念與型別