0
    while ($row = mysql_fetch_array($sqlquery)) 
        {

    $fd = strtotime($row['date1']);
    $sd = strtotime($row['date2']);


    $dates = floor(($sd - $fd ) / 86400);

    $price = $dates * 25;
   }

$price我想为每一行插入另一个表。我不能用一个插入来做到这一点,因为$price每次都不同。

4

2 回答 2

2
"INSERT INTO `yourtable` ('price') VALUES ('".$price."')";

把它放在while循环中,所以

while ($row = mysql_fetch_array($sqlquery)) 
        {

    $fd = strtotime($row['date1']);
    $sd = strtotime($row['date2']);


    $dates = floor(($sd - $fd ) / 86400);

    $price = $dates * 25;
"INSERT INTO `yourtable` ('price') VALUES ('".$price."')";
   }

这意味着 while 循环的每次迭代都会有一个插入,每次$price都不同。

于 2013-04-25T16:50:57.043 回答
1

要一次插入所有行,您可以执行以下操作:

INSERT INTO Other_Table (price)
  SELECT 25 * (date2 - date1) / 86400
  FROM ... (table from $sqlquery)
  WHERE ... (where clause from $sqlquery)
于 2013-04-25T16:52:56.953 回答