在MySQL中應用JOIN語句停止銜接操作的具體教程。本站提示廣大學習愛好者:(在MySQL中應用JOIN語句停止銜接操作的具體教程)文章只能為提供參考,不一定能成為您想要的結果。以下是在MySQL中應用JOIN語句停止銜接操作的具體教程正文
到今朝,我們曾經進修了從一個表中獲得數據。這是簡略的須要,但在年夜多半實際MySQL的應用,常常須要將數據從多個表中的一個單一的查詢。
可使用多個表中的單一SQL查詢。在MySQL中聯接(join)行動是指兩個或多個表到一個表中可使用銜接在SELECT,UPDATE和DELETE語句中參加MySQL表。我們將看到一個例子LEFT JOIN簡略的MySQL銜接。
在敕令提醒符應用聯接:
假定我們兩個表的教程tcount_tbl和tutorials_tbl的完全列表以下:
例子:
嘗嘗上面的例子:
root@host# mysql -u root -p password; Enter password:******* mysql> use TUTORIALS; Database changed mysql> SELECT * FROM tcount_tbl; +-----------------+----------------+ | tutorial_author | tutorial_count | +-----------------+----------------+ | mahran | 20 | | mahnaz | NULL | | Jen | NULL | | Gill | 20 | | John Poul | 1 | | Sanjay | 1 | +-----------------+----------------+ 6 rows in set (0.01 sec) mysql> SELECT * from tutorials_tbl; +-------------+----------------+-----------------+-----------------+ | tutorial_id | tutorial_title | tutorial_author | submission_date | +-------------+----------------+-----------------+-----------------+ | 1 | Learn PHP | John Poul | 2007-05-24 | | 2 | Learn MySQL | Abdul S | 2007-05-24 | | 3 | JAVA Tutorial | Sanjay | 2007-05-06 | +-------------+----------------+-----------------+-----------------+ 3 rows in set (0.00 sec) mysql>
如今,參加這兩個表我們可以編寫一個SQL查詢。這個查詢會選擇一切的作者從表tutorials_tbl,從tcount_tbl會拿起響應數目的教程。
mysql> SELECT a.tutorial_id, a.tutorial_author, b.tutorial_count -> FROM tutorials_tbl a, tcount_tbl b -> WHERE a.tutorial_author = b.tutorial_author; +-------------+-----------------+----------------+ | tutorial_id | tutorial_author | tutorial_count | +-------------+-----------------+----------------+ | 1 | John Poul | 1 | | 3 | Sanjay | 1 | +-------------+-----------------+----------------+ 2 rows in set (0.01 sec) mysql>
在PHP劇本中應用聯接:
可使用任何上述的SQL查詢的PHP劇本。只須要經由過程PHP函數mysql_query()履行SQL查詢,然後用慣例辦法獲得成果。
例子:
嘗嘗上面的例子:
<?php $dbhost = 'localhost:3036'; $dbuser = 'root'; $dbpass = 'rootpassword'; $conn = mysql_connect($dbhost, $dbuser, $dbpass); if(! $conn ) { die('Could not connect: ' . mysql_error()); } $sql = 'SELECT a.tutorial_id, a.tutorial_author, b.tutorial_count FROM tutorials_tbl a, tcount_tbl b WHERE a.tutorial_author = b.tutorial_author'; mysql_select_db('TUTORIALS'); $retval = mysql_query( $sql, $conn ); if(! $retval ) { die('Could not get data: ' . mysql_error()); } while($row = mysql_fetch_array($retval, MYSQL_ASSOC)) { echo "Author:{$row['tutorial_author']} <br> ". "Count: {$row['tutorial_count']} <br> ". "Tutorial ID: {$row['tutorial_id']} <br> ". "--------------------------------<br>"; } echo "Fetched data successfully\n"; mysql_close($conn); ?>
MySQL左銜接:
一個簡略的銜接和一個MySQL左銜接是分歧的。一個MySQL LEFT JOIN供給了額定的斟酌到在右邊的表。
假如做了LEFT JOIN,獲得的一切記載以異樣的方法相婚配,另外,獲得一個額定的記載每一個不婚配的記載,在左表中的聯接 - 從而包管了每個作者獲得聯系關系(本例子中):
實例:
嘗嘗上面的例子就明確了LEFT JOIN:
root@host# mysql -u root -p password; Enter password:******* mysql> use TUTORIALS; Database changed mysql> SELECT a.tutorial_id, a.tutorial_author, b.tutorial_count -> FROM tutorials_tbl a LEFT JOIN tcount_tbl b -> ON a.tutorial_author = b.tutorial_author; +-------------+-----------------+----------------+ | tutorial_id | tutorial_author | tutorial_count | +-------------+-----------------+----------------+ | 1 | John Poul | 1 | | 2 | Abdul S | NULL | | 3 | Sanjay | 1 | +-------------+-----------------+----------------+ 3 rows in set (0.02 sec)
須要做更多的理論能力熟習JOINS。這是一個龐雜的概念,在MySQL/SQL將變得加倍清楚。