如何获得 Purchase_Order.QTY 和 Purchase_Request.QTY 的总和作为余额?我的问题是 Purchase_Order 表中有多个 po_number 具有相同的计数器。
下面是我的表格,
我需要在purchase_order中获取柜台100001的总数量,这样我才能得到QTY purchase_order和QTY purchase_request之间的差异
表采购_订单
counter | qty |
100001 | 10 |
100001 | 10 |
100001 | 10 |
100004 | 30 |
Table Purchase_Request
counter | total_qty |
100001 | 50 |
100002 | 100 |
100003 | 50 |
100004 | 70 |
这是我的示例输出
输出
counter | total_qty | balance |
100001 | 50 | 20 |
100002 | 100 | 100 |
100003 | 50 | 50 |
100004 | 70 | 40 |
这是我的剧本,
<?php
$mysqli = new mysqli("localhost", "root", "", "test");
$result = $mysqli->query("
");
echo'<table id="tfhover" cellspacing="0" class="tablesorter" style="text-transform:uppercase;" border="1px">
<thead>
<tr>
<th></th>
<th>counter</th>
<th>QTY</th>
<th>balance</th>
</tr>
</thead>';
echo'<tbody>';
$i=1;
while($row = $result->fetch_assoc()){
echo'<tr>
<td>'.$i++.'</td>
<td>'.$row['counter'].'</td>
<td>'.$row['total_qty'].'</td>
<td>'.$row['balance'].'</td>
</tr>';
}
echo "</tbody></table>";
?>
帮助 ?