gpt4 book ai didi

php - sql表如何将从sql表中获取的数字数组相乘并存储到数组中并返回

转载 作者:行者123 更新时间:2023-11-29 13:43:34 33 4
gpt4 key购买 nike

在sql表中如何乘以从sql表获取的数字数组

如下表所示

Id         country       Person        Money

1 UK john 2010
2 USA Henry 120
3 RUS neko 130
4 GER suka 110
7 CAN beater 1450
8 USA lusi 2501

编码

SELECT Money  
FROM Customers;

如何获取货币列仅分隔行并与给定数字相乘并存储到数组中返回

$number = 2;

$Arratotal =
(2010*$number,120*$number,110*$number,1450*$number,2510*$number)

return $Arratotal;

最佳答案

假设 $myDatabase 是 mySQLi 连接。

此代码用于获取金钱乘以数字。

$myNumber = 2;
$qry = "SELECT (Money * {$myNumber}) AS money
FROM Customers";
$result = $myDatabase->query($qry, MYSQLI_STORE_RESULT);

这段代码是将所有的钱存储在数组$arrayTotal中。

while ($row = $result->fetch_object()) {
$arrayTotal[] = $row->money;
}

希望这有帮助。

关于php - sql表如何将从sql表中获取的数字数组相乘并存储到数组中并返回,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17759300/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com