doudie2693 2016-11-28 13:46
浏览 73
已采纳

来自mysql的sum值

Using PHP, I can find the productId in the first table:

$stmt = $db->prepare("SELECT productId FROM boughtProducts WHERE userid = :username");
$stmt->execute(array(':username' => $_SESSION['username']));
$productId = $stmt->fetchAll();

I also have a columns with values in variables like the following:

$productId["0"]["productId"] & $productId["1"]["productId"]...

In the variables above I only get IDs where I must find my values in second table.

$stmt = $db->prepare("SELECT price FROM products WHERE id = :productid");
$stmt->execute(array(':productid' => $productId["0"]["productId"]));
$price = $stmt->fetch(PDO::FETCH_ASSOC);

This returns all numbers, which I want to SUM and store in a variable. How can I achieve this? I want to SUM price for all products which are bought by userid.

  • 写回答

1条回答 默认 最新

  • dougai3418 2016-11-28 14:11
    关注

    Something along these lines might work:

    SELECT SUM(products.price) FROM boughtProducts, products WHERE boughtProducts.userid = :username and products.id = boughtProducts.productId
    

    Read something about the JOIN keyword (I'm using an implicit join in my example)... also get yourself acquainted with the concept of foreign keys.

    Good luck!

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部