首页 > 数据库 > MySQL > 正文

在MySQL中使用JOIN语句进行连接操作的详细教程

2024-07-24 13:07:21
字体:
来源:转载
供稿:网友

这篇文章主要介绍了在MySQL中使用JOIN语句进行连接操作的详细教程,是MySQL入门学习中的基础知识,需要的朋友可以参考下

到目前,我们已经学习了从一个表中获取数据。这是简单的需要,但在大多数现实MySQL的使用,经常需要将数据从多个表中的一个单一的查询。

可以使用多个表中的单一SQL查询。在MySQL中联接(join)行为是指两个或多个表到一个表中可以使用连接在SELECT,UPDATE和DELETE语句中加入MySQL表。我们将看到一个例子LEFT JOIN简单的MySQL连接。

在命令提示符使用联接:

假设我们两个表的教程tcount_tbl和tutorials_tbl的完整列表如下:

例子:

试试下面的例子:

 

 
  1. root@host# mysql -u root -p password
  2. Enter password:******* 
  3. mysql> use TUTORIALS; 
  4. Database changed 
  5. mysql> SELECT * FROM tcount_tbl; 
  6. +-----------------+----------------+ 
  7. | tutorial_author | tutorial_count | 
  8. +-----------------+----------------+ 
  9. | mahran | 20 | 
  10. | mahnaz | NULL | 
  11. | Jen | NULL | 
  12. | Gill | 20 | 
  13. | John Poul | 1 | 
  14. | Sanjay | 1 | 
  15. +-----------------+----------------+ 
  16. rows in set (0.01 sec) 
  17. mysql> SELECT * from tutorials_tbl; 
  18. +-------------+----------------+-----------------+-----------------+ 
  19. | tutorial_id | tutorial_title | tutorial_author | submission_date | 
  20. +-------------+----------------+-----------------+-----------------+ 
  21. | 1 | Learn PHP | John Poul | 2007-05-24 | 
  22. | 2 | Learn MySQL | Abdul S | 2007-05-24 | 
  23. | 3 | JAVA Tutorial | Sanjay | 2007-05-06 | 
  24. +-------------+----------------+-----------------+-----------------+ 
  25. rows in set (0.00 sec) 
  26. mysql> 

现在,加入这两个表我们可以编写一个SQL查询。这个查询会选择所有的作者从表tutorials_tbl,从tcount_tbl会拿起相应数量的教程。

 

 
  1. mysql> SELECT a.tutorial_id, a.tutorial_author, b.tutorial_count 
  2. -> FROM tutorials_tbl a, tcount_tbl b 
  3. -> WHERE a.tutorial_author = b.tutorial_author; 
  4. +-------------+-----------------+----------------+ 
  5. | tutorial_id | tutorial_author | tutorial_count | 
  6. +-------------+-----------------+----------------+ 
  7. | 1 | John Poul | 1 | 
  8. | 3 | Sanjay | 1 | 
  9. +-------------+-----------------+----------------+ 
  10. rows in set (0.01 sec) 
  11. mysql> 

在PHP脚本中使用联接:

可以使用任何上述的SQL查询的PHP脚本。只需要通过PHP函数mysql_query()执行SQL查询,然后用常规方法获取结果。

例子:

试试下面的例子:

 

 
  1. <?php 
  2. $dbhost = 'localhost:3036'
  3. $dbuser = 'root'
  4. $dbpass = 'rootpassword'
  5. $conn = mysql_connect($dbhost$dbuser$dbpass); 
  6. if(! $conn ) 
  7. die('Could not connect: ' . mysql_error()); 
  8. $sql = 'SELECT a.tutorial_id, a.tutorial_author, b.tutorial_count 
  9. FROM tutorials_tbl a, tcount_tbl b 
  10. WHERE a.tutorial_author = b.tutorial_author'; 
  11.  
  12. mysql_select_db('TUTORIALS'); 
  13. $retval = mysql_query( $sql$conn ); 
  14. if(! $retval ) 
  15. die('Could not get data: ' . mysql_error()); 
  16. while($row = mysql_fetch_array($retval, MYSQL_ASSOC)) 
  17. echo "Author:{$row['tutorial_author']} <br> "
  18. "Count: {$row['tutorial_count']} <br> "
  19. "Tutorial ID: {$row['tutorial_id']} <br> "
  20. "--------------------------------<br>"
  21. }  
  22. echo "Fetched data successfully/n"
  23. mysql_close($conn); 
  24. ?> 

MySQL左连接:

一个简单的连接和一个MySQL左连接是不同的。一个MySQL LEFT JOIN提供了额外的考虑到在左边的表。

如果做了LEFT JOIN,得到的所有记录以同样的方式相匹配,此外,得到一个额外的记录每个不匹配的记录,在左表中的联接 - 从而保证了每一个作者得到关联(本例子中):

实例:

试试下面的例子就明白了LEFT JOIN:

 

 
  1. root@host# mysql -u root -p password
  2. Enter password:******* 
  3. mysql> use TUTORIALS; 
  4. Database changed 
  5. mysql> SELECT a.tutorial_id, a.tutorial_author, b.tutorial_count 
  6. -> FROM tutorials_tbl a LEFT JOIN tcount_tbl b 
  7. -> ON a.tutorial_author = b.tutorial_author; 
  8. +-------------+-----------------+----------------+ 
  9. | tutorial_id | tutorial_author | tutorial_count | 
  10. +-------------+-----------------+----------------+ 
  11. | 1 | John Poul | 1 | 
  12. | 2 | Abdul S | NULL | 
  13. | 3 | Sanjay | 1 | 
  14. +-------------+-----------------+----------------+ 
  15. rows in set (0.02 sec) 

需要做更多的实践才能熟悉JOINS。这是一个复杂的概念,在MySQL/SQL将变得更加清晰。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表