开发者

PHP and Multiple DB Selects

开发者 https://www.devze.com 2022-12-17 17:06 出处:网络
I\'ve got two tables from which I need to extract information, but the data from the second table depends on the information I get from the first one. Is there an easy way to handle this?

I've got two tables from which I need to extract information, but the data from the second table depends on the information I get from the first one. Is there an easy way to handle this?

<?php
  mysql_connect('localhost', 'root', 'root') or die(mysql_error());
  mysql_select_db('stadium') or die(mysql_error());

  $result = mysql_query("SELECT * FROM events");

  $result2 = mysql_query("SELECT name FROM competitions WHERE id='$row[competition_id]' ");

  while($row = mysql_fetch_array($result)) {
    echo "<tr id=\"" . $row['id'] . "\"> \n<td>" . $row['name'] . "</td>";
    echo "<td>" . $row['competition_id'] . "</td>";
    echo "<td>" . $row['date'] . "</td><开发者_如何学JAVA/tr>";
  }
?>


Use a JOIN.

SELECT e.*, c.name as competition_name FROM events e LEFT JOIN competitions c on c.id = e.competition_id
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号