-3

I use this code for generating Daily Cash Book, it generates single report between starting and ending date but I want to generate or fetch data date wise, or 1st May report generate separately then 2nd May and so on.

<?php
include'connect.php';
$Receipts = mysql_query("SELECT vou_date, vou_no, acc_code, acc_name, narration,  ROUND(SUM(receipts),2) AS receipts FROM cash_book WHERE vou_date BETWEEN '2013-05-01' AND  '2013-05-29' AND receipts > 0 AND vou_no LIKE 'CR' GROUP BY acc_code");
while($CBResult = mysql_fetch_assoc($Receipts)){
echo '
    <table border="0" width="900" align="center">
    <tr>
        <td scope="col" width="100" align="center">'.$CBResult['vou_no'].'</td>
        <td scope="col" width="100" align="center">'.$CBResult['acc_code'].'</td>
        <td scope="col" width="200" align="left">'.$CBResult['acc_name'].'</td>
        <td scope="col" width="400" align="left">'.$CBResult['narration'].'</td>
        <td scope="col" width="100" align="right">'.$CBResult['receipts'].'</td>
      </tr>
    </table>
'; 
}
$Payments = mysql_query("SELECT vou_date, vou_no, acc_code, acc_name, narration,  ROUND(SUM(payments),2) AS payments FROM cash_book WHERE vou_date BETWEEN '2013-05-01' AND '2013-05-29' AND payments > 0 AND vou_no LIKE 'CP' GROUP BY acc_code");
while($CBResult = mysql_fetch_assoc($Payments)){
echo '
    <table border="0" width="900" align="center">
    <tr>
        <td scope="col" width="100" align="center">'.$CBResult['vou_no'].'</td>
        <td scope="col" width="100" align="center">'.$CBResult['acc_code'].'</td>
        <td scope="col" width="200" align="left">'.$CBResult['acc_name'].'</td>
        <td scope="col" width="400" align="left">'.$CBResult['narration'].'</td>
        <td scope="col" width="100" align="right">'.$CBResult['receipts'].'</td>
      </tr>
    </table>
';
}
?>
4

1 回答 1

0

我想我知道你的问题是什么,试着把日期放在 group_by sql 查询中,像这样,应该可以解决问题:

SELECT vou_date, vou_no, acc_code, acc_name, narration,  ROUND(SUM(receipts),2) AS receipts 
FROM cash_book 
WHERE vou_date BETWEEN '2013-05-01' AND  '2013-05-29' 
AND receipts > 0 
AND vou_no LIKE 'CR' 
GROUP BY vou_date, acc_code
于 2013-05-29T08:56:25.220 回答