我需要今天到期销售。总销售额'总计',总付费行'已付'。 我需要今天到期。
$sql = "SELECT id, SUM(total) AS total, SUM(paid) AS paid FROM sma_sales WHERE DATE(`timestamp`) = CURDATE()";
$result = $conn->query($sql);
if ($result->num_rows > 0) {
// output data of each row
while($row = $result->fetch_assoc())
{
echo $sum = $row['total'] - $sum = $row['paid'];
}
} else {
echo "0.00 results";
}
我得到了结果0.00我今天需要查看总“到期销售”金额结果。 database table screen shot
请帮忙。
答案 0 :(得分:-3)
你应该以这种方式做出表格中的状态:
SELECT ID FORM SMA_SALES WHERE DATA('timestap') and status == paid;