|
|
|
สอบถามปัญหาคำสั่ง SQL ของ Mysql เกี่ยวกับ Group by เงื่อนไข และ การSum ครับ |
|
|
|
|
|
|
|
ปรับตาชื่อตารางที่เดียว แล้วใส่ส่วนคอนเน็ค DB แล้วรันดูครับ (ผมมั่วนะ)
$SQL="SELECT*,sum(inv_moneyrecive) as AAA ,sum(inv_moneychange) as BBB , count(inv_id) as CCC FROM ตาราง GROUP BY year(inv_date), month(inv_date) DESC";
$dbquery= mysql_query($SQL);
$num_rows= mysql_num_rows($dbquery);
$i=0;
while ($i<$num_rows){
$result=mysql_fetch_array($dbquery);
$mountxxx = substr($result['inv_date'],5,2);
$sum_inv_moneyrecive=$result['AAA'];
$sum_inv_moneychange=$result['BBB'];
$net = $sum_inv_moneyrecive - $sum_inv_moneychange ;
$count_inv=$result['CCC'];
echo "เดือน : " ;
echo $mountxxx."------จำนวน------>";
echo $count_inv."รายการ------ยอดเงิน------>";
echo $net." บาท";
$i++; }
|
ประวัติการแก้ไข 2014-02-28 02:17:05 2014-02-28 02:24:35 2014-02-28 02:25:41
|
|
|
|
Date :
2014-02-28 02:16:23 |
By :
meannerss |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|