ai didi

php - 将值与其他值的总和一起列出一次

转载 作者:行者123 更新时间:2023-11-29 19:37:14 24 4
gpt4 key购买 nike

enter image description here

正如您在图片中看到的,我使用这些代码列出了 mysql 数据库中的产品:

$satis_cek = mysql_query("SELECT * FROM satislar WHERE zno = '".$zno."'");
$varmi = mysql_num_rows($satis_cek);
$toplam_tutar = 0;
$indirim = 0;
$genel_toplam = 0;
if($varmi == ""){
$ara_toplam = 0;
$indirim_toplam = 0;
$genel_toplamlar= 0;
}else{
while ($satis_al = mysql_fetch_array($satis_cek)){
$sat_fatura_no = $satis_al['sat_fatura_no'];
$personel = $satis_al['sat_uye_id'];
$sat_tarih = $satis_al['sat_tarih'];
$sat_tip = $satis_al['sat_tip'];
$toplam_tutar += $satis_al['toplam_tutar'];
$indirim += $satis_al['indirim'];
$genel_toplam += $satis_al['genel_toplam'];

$fis_cek = mysql_query("SELECT * FROM stok_hareketleri WHERE sth_fatura_no = '".$sat_fatura_no."'");
while ($a= mysql_fetch_array($fis_cek)){
$sth_stok_kodu = $a['sth_stok_kod'];
$sth_adet = $a['sth_adet'];
$sth_tutar = $a['sth_tutar'];

$stok_cek = mysql_query("SELECT * FROM stoklar WHERE sto_RECno = '".$sth_stok_kodu."'");
while ($stok_al = mysql_fetch_array($stok_cek)){
$sto_isim = $stok_al['sto_isim'];
echo'
<tr>
<td align="left">'.$sto_isim.'</a></td>
<td align="center">'.$sth_adet.'</td>
<td align="right">'.$sth_tutar.'</td>
</tr>';}}}}

如图所示,我尝试列出 Jack Daniel's 一次,并计算其销售数量总和和销售价格总和,并将它们打印在 onw html 表格行中。

例如:

Jack Daniel's 2 220.00

Yeni Rakı 70 cl 1 85.00

Fanta 330 ml 1 3.00

我是 PHP 新手,所以我无法修复如何一次显示每个产品及其销售数量总和以及同一 mysql 表中的价格总和。

enter image description here

enter image description here

Product Details

最佳答案

尝试这样:table1 是产品详细信息表,table2 是已售商品表。

select sto_isim,sum(sth_tutar) as sum,sum(sth_adet) as cnt from table1 join table2 on table1.sto_RECno=table2.sth_stok_kod group by sto_RECno

这应该为每个产品提供单行的总和和计数。

关于php - 将值与其他值的总和一起列出一次,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41518763/

24 4 0
文章推荐: javascript - 避免在 IE 中缓存 angularJS 局部 View
文章推荐: Android Wear Watch Face - INVALID_ACCOUNT 尝试连接到 Google Services API 时
文章推荐: javascript - 取消订阅 PubNub channel 以响应(之前)卸载事件
文章推荐: android - 如何在 Android Studio 中包含 Android N 源代码?
行者123
个人简介

我是一名优秀的程序员,十分优秀!

滴滴打车优惠券免费领取
滴滴打车优惠券
全站热门文章
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com