PHP - 嵌套的递归SQL查询不检索值

时间:2016-09-04 09:30:57

标签: php mysql arrays loops

我要做的是打印一张表并在每一行中打印,为DB中的每个不同值,值,DB中具有该值的行数以及值的总和。对不起,这个问题没有得到很好的解释,更容易直接进入代码

$query_voucher1="SELECT * FROM voucher WHERE consegnato= 0 AND IDprestazione=0 ORDER BY codice";
$risultato_query_voucher1=@mysql_query($query_voucher1);
echo "<table class='table table-striped' style='margin-top:70px; width: 60%;'>
      <caption>Riassunto Voucher Liberi</caption>
       <tr>
         <th>Codice di controllo</th>
         <th>Quantità (solo liberi)</th>
         <th>Data Emissione</th>
         <th>Valore Pacchetto (solo liberi)</th>
        </tr>";

$prevcodice= NULL;
$curcodice= 10;
while ($row_voucher1=mysql_fetch_row($risultato_query_voucher1)) {
                if ($curcodice!=$prevcodice){
                  $array_temp_query_value=array();
                  if ($modifica==true){
                  $temp_query_value=mysql_query("SELECT valorelordo FROM voucher WHERE codice='$row_voucher1[2]' AND consegnato=0 ");
                  }else{
                    $temp_query_value=mysql_query("SELECT valorelordo FROM voucher WHERE codice='$row_voucher1[2]' AND consegnato=0 AND IDprestazione=0");
                  }
                  while(mysql_fetch_row($temp_query_value)){
                    array_push($array_temp_query_value, $temp_query_value[0]);
                  }
                  echo "<tr>
                          <td>" . $row_voucher1[2] . "</td>
                          <td>" . count($array_temp_query_value) . "</td>
                          <td>" . print_r($array_temp_query_value). "</td>
                        </tr>";
                  $prevcodice=$row_voucher1[2];

                }
              $curcodice=$row_voucher1[2];
              }

              echo "</table>";

因此,假设我有一个包含字段codice的数据库,并且会重复此字段中的多个值。我想做的是,一旦codice相同的行数和codice相同的值的总和,就打印一次值。

这个解释不是很好,所以JSFiddle

$array_temp_query_value返回正确数量的值,因此我可以将它们计算为填充第二个字段,但数组中的所有值都是空的,所以我无法对它们求和。查询看起来不错,所以我真的不知道。

1 个答案:

答案 0 :(得分:0)

您无需自行计算此值,只需使用count()sum()group by,例如

select codice, count(*), sum(codice)
from voucher
group by codice

这将为您提供表中的所有现有值,每个值的行数和总和。

Upfront,不要使用mysql_*函数,因为它们是deprecated并在PHP 7中删除。

mysqli取自mysqli_fetch_row的在线手册,这些内容(未经测试)

$result = mysqli_query($conn, 'select codice, count(*), sum(codice) from voucher group by codice');
while ($row = mysqli_fetch_row($result)) {
    echo '<tr><td>' . $row[0] . '</td><td>' . $row[1] . '</td><td>' . $row[2] . '</td></tr>';
}