PHP MYSQL sum ve çarpma işlemi
Merhaba kullanıcı sepet tablom var kullanıcının sepete ekledikleri ürünlerin toplamını sum() ile alıyorum fakat adet sayısı ile çarpınca olması gereken fiyat hesaplanmıyor yanlış hesaplanıyor yardımcı olabilir misiniz?
$sepetsor = $db->prepare("SELECT *,sum(sepet_fiyat) as sepet_fiyat FROM sepet group by sepet_kullanici order by sepet_zaman desc");
$sepetsor->execute();
while ($sepetcek = $sepetsor->fetch(PDO::FETCH_ASSOC))
{
echo $sepetcek['sepet_fiyat']*$sepetcek['sepet_adet'];
}
sepet_fiyat kodunu yazınca doğru geliyor ürün fiyatını hesaplıyor ama adet ile çarpınca sonuç yanlış çıkıyor
mysql sorgusunda bunu çarpabilirmiyiz acaba