|
|
|
sum ข้อมูลสองตารางตาม date แล้วแสดงค่าออกมาเป็นค่าเดียว(totol)แล้วเอาค่าที่ sum นั้นมาสร้างกราฟแสดงข้อมูล |
|
|
|
|
|
|
|
อยากจะsum ข้อมูลในตารางโดย sum ตาม date ตอนนี้ผม sum รางแรกได้แล้วแต่อยาก นำข้อมูลในตารางสองมา sum ด้วยวิธีที่เหมือนกัน พี่ๆ พอมีวิธีไหมครับ
$query = "
SELECT SUM(Price) AS totol, DATE_FORMAT(date, '%Y') AS date
FROM dailymember
GROUP BY DATE_FORMAT(date, '%Y%')
";
$result = mysqli_query($con, $query);
$resultchart = mysqli_query($con, $query);
//for chart
$date = array();
$totol = array();
while($rs = mysqli_fetch_array($resultchart)){
$date[] = "\"".$rs['date']."\"";
$totol[] = "\"".$rs['totol']."\"";
}
$date = implode(",", $date);
$totol = implode(",", $totol);
?>
<h3 align="center">รายงานในแบบกราฟ</h3>
<table width="200" border="1" cellpadding="0" cellspacing="0" align="center">
<thead>
<tr>
<th width="10%">ปี</th>
<th width="10%">ยอดขาย</th>
</tr>
</thead>
<?php while($row = mysqli_fetch_array($result)) { ?>
<tr>
<td align="center"><?php echo $row['date'];?></td>
<td align="right"><?php echo number_format($row['totol'],2);?></td>
</tr>
<?php } ?>
</table>
<?php mysqli_close($con);?>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.6.0/Chart.bundle.js"></script>
<hr>
<p align="center">
<!--devbanban.com-->
<canvas id="myChart" width="800px" height="300px"></canvas>
<script>
var ctx = document.getElementById("myChart").getContext('2d');
var myChart = new Chart(ctx, {
type: 'bar',
data: {
labels: [<?php echo $date;?>
],
datasets: [{
label: 'รายงานภาพรวม แยกตามปี (บาท)',
data: [<?php echo $totol;?>
],
backgroundColor: [
'rgba(255, 99, 132, 0.2)',
'rgba(54, 162, 235, 0.2)',
'rgba(255, 206, 86, 0.2)',
'rgba(75, 192, 192, 0.2)',
'rgba(153, 102, 255, 0.2)',
'rgba(255, 159, 64, 0.2)'
],
borderColor: [
'rgba(255,99,132,1)',
'rgba(54, 162, 235, 1)',
'rgba(255, 206, 86, 1)',
'rgba(75, 192, 192, 1)',
'rgba(153, 102, 255, 1)',
'rgba(255, 159, 64, 1)'
],
borderWidth: 1
}]
},
options: {
scales: {
yAxes: [{
ticks: {
beginAtZero:true
}
}]
}
}
});
</script>
</p>
<!--devbanban.com-->
</html>
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2020-10-06 12:52:10 |
By :
opengamer159 |
View :
674 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|