Computer >> 컴퓨터 >  >> 프로그램 작성 >> MySQL

두 개의 MySQL 테이블을 조인하기 위해 내부에 MySQL JOINS를 사용하여 PHP 스크립트를 작성하는 방법은 무엇입니까?


두 테이블을 PHP 함수로 결합하기 위해 MySQL JOIN 구문을 사용할 수 있습니다. – mysql_query() . 이 함수는 SQL 명령을 실행하고 나중에 다른 PHP 함수인 mysql_fetch_array()를 실행하는 데 사용됩니다. 선택한 모든 데이터를 가져오는 데 사용할 수 있습니다.

설명하기 위해 다음 예가 있습니다. -

예시

이 예에서는 다음 데이터가 있는 두 개의 MySQL 테이블을 사용하고 있습니다.

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)

이제 다음은 tutorials_tbl 테이블에서 모든 작성자를 선택하기 위해 테이블을 조인하는 PHP 스크립트입니다. tcount_tbl.에서 해당하는 수의 자습서를 선택합니다.

<?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);
?>