|
|
|
สอบถาม การคำนวณผลรวมจากตาราง A แล้วนำไปคิดเปอร์เซ็นต์ของค่าในตาราง B |
|
|
|
|
|
|
|
Code (PHP)
$sql1 = 'select sum(quantity) as total from tb_a ';
$sql2 = 'select * from tb_b Where id=1';
$result1 = mysql_query($sql1);
$result2 = mysql_query($sql2);
$percentage=0;
$result1=mysql_fetch_array($result1));
$result2=mysql_fetch_array($result2));
$percentage=($result1['total']*100)/$result2['total'];
echo $percentage.'%';
|
|
|
|
|
Date :
2020-06-01 20:29:42 |
By :
Genesis™ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากครับ @Genesis
|
|
|
|
|
Date :
2020-06-02 08:50:52 |
By :
chabarpy |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|