การใช้ MySQl Joins
ในบทก่อนหน้านี้เราได้รับข้อมูลจากทีละตาราง สิ่งนี้ดีพอสำหรับการใช้งานง่ายๆ แต่ในการใช้งาน MySQL ในโลกแห่งความเป็นจริงส่วนใหญ่คุณมักจะต้องได้รับข้อมูลจากหลายตารางในแบบสอบถามเดียว
คุณสามารถใช้หลายตารางในแบบสอบถาม SQL เดียวของคุณ การเข้าร่วมใน MySQL หมายถึงการรวมตารางสองตารางขึ้นไปให้เป็นตารางเดียว
คุณสามารถใช้ JOINS ในคำสั่ง SELECT, UPDATE และ DELETE เพื่อเข้าร่วมตาราง MySQL เราจะเห็นตัวอย่างของ LEFT JOIN ซึ่งแตกต่างจาก MySQL JOIN แบบธรรมดา
ใช้ Joins ที่ Command Prompt
สมมติว่าเรามีสองตาราง tcount_tbl และ tutorials_tblใน TUTORIALS ลองดูตัวอย่างด้านล่าง -
ตัวอย่าง
ตัวอย่างต่อไปนี้ -
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>
การใช้ Joins ใน PHP Script
คุณสามารถใช้แบบสอบถาม SQL ที่กล่าวถึงข้างต้นในสคริปต์ PHP คุณจะต้องส่งแบบสอบถาม SQL ไปยังฟังก์ชัน PHP เท่านั้นmysql_query() จากนั้นคุณจะดึงผลลัพธ์ตามปกติ
ตัวอย่าง
ตัวอย่างต่อไปนี้ -
<?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ฉันได้รับระเบียนทั้งหมดที่ตรงกันในลักษณะเดียวกันและในส่วนเพิ่มเติมฉันได้รับบันทึกพิเศษสำหรับแต่ละระเบียนที่ไม่ตรงกันในตารางด้านซ้ายของการเข้าร่วมดังนั้นจึงมั่นใจได้ (ในตัวอย่างของฉัน) ว่า AUTHOR ทุกคนได้รับการกล่าวถึง
ตัวอย่าง
ลองใช้ตัวอย่างต่อไปนี้เพื่อทำความเข้าใจ 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 และจะชัดเจนยิ่งขึ้นในขณะที่ทำตัวอย่างจริง