PHP+MYSQL循环输出一个月的消费记录,并统计每一天的支出与收入总合

现有一张消费记录表(my_money),记录每一天的支出与收入情况。表结构如下图:我写的SQL查询只能显示当天的消费情况,而我想要的是循环显示出一个月的消费情况,并将每一... 现有一张消费记录表(my_money),记录每一天的支出与收入情况。表结构如下图:

我写的SQL查询只能显示当天的消费情况,而我想要的是循环显示出一个月的消费情况,并将每一天的支出与收入做统计。
<?php
$daybegin=strtotime(date('Y-m-d'));
$dayend=$daybegin+86400;

//查询当天的数据
$sql="select * from my_money where time < $dayend and time > $daybegin";

//统计当天支出总额
$sql_out="select sum(cash) as cashout from my_money where time < $dayend and time > $daybegin and type=1";

//统计当天收入总额
$sql_in="select sum(cash) as cashin from my_money where time < $dayend and time > $daybegin and type=2";

?>
展开
 我来答
zhejilxp
2015-04-27
知道答主
回答量:31
采纳率:0%
帮助的人:28.8万
展开全部
//统计当天支出总额
$sql_out="select sum(cash) as cashout from my_money where time < $dayend and time > $daybegin and type=1 group by FROM_UNIXTIME(time,'%y-%m-%d')";

//统计当天收入总额
$sql_in="select sum(cash) as cashin from my_money where time < $dayend and time > $daybegin and type=2 group by FROM_UNIXTIME(time,'%y-%m-%d')";
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式