在php中的多个表中插入条目

时间:2010-01-30 12:24:32

标签: php mysql

我在tizag.com上找到了这个教程。但它用于显示来自不同表的条目。 我该如何插入?

         <?php
    // Make a MySQL Connection
   // Construct our join query
      $query = "SELECT family.Position, food.Meal ".
      "FROM family, food ".
"WHERE family.Position = food.Position";

      $result = mysql_query($query) or die(mysql_error());


      // Print out the contents of each row into a table 
     while($row = mysql_fetch_array($result)){
echo $row['Position']. " - ". $row['Meal'];
echo "<br />";
      }
      ?>

2 个答案:

答案 0 :(得分:1)

您是指使用一个查询将数据插入多个数据库表中? 你不能。

阅读MySQL INSERT syntax reference

当然,您可以循环访问您的数据,例如将它逐步插入到各个表中,但如果没有真正的代码,那么很难提供帮助。

答案 1 :(得分:0)

同一网站上有一个教程:SQL Tutorial - Insert

这也很有用:PHP MySQL Insert Into