gpt4 book ai didi

mysql - JSON 结果显示 SUM MySQL 命令

转载 作者:行者123 更新时间:2023-11-28 23:09:44 27 4
gpt4 key购买 nike

我正在对我的 MYSQL 表中的所有值列进行有效的返回计算,但是当我去检查我的 api 结果时;列值求和命令出现在 JSON 的结果中。

   [
{
"SUM(producFinalPrice)": 6000
}
]

我的路由器从我的数据库中获取数据。

router.get('/sell/home-card-last-sell-compared-to-the-previous-day', function (req, res) {
connection.query('SELECT SUM(producFinalPrice) FROM new_sell',
function (err, lastSellComparedToThePreviousDayCardHome, fields) {
if (err) {
throw err;
}
res.send(lastSellComparedToThePreviousDayCardHome);
}
);
});

`

为了更清楚地说明我的错误,我正在使用 AJAX 发出先前查询的最终请求;通过这种方式。

$(function () {
$.ajax({
type: "GET",
url: "/sell/home-card-last-sell-compared-to-the-previous-day",
success: function (lastSellComparedToThePreviousDayCardHome) {
var $lastSellComparedPreviousDay = $('#last-sell-compared-to-the-previous-day');
$.each(lastSellComparedToThePreviousDayCardHome, function (i, SellPreviousDay) {
$lastSellComparedPreviousDay.append('<li>R$ ' + SellPreviousDay.producFinalPrice + '.</li>');
});
console.log('Sucess return to Last Sell Previous Day!', lastSellComparedToThePreviousDayCardHome);
}
});
});

基本上就是这样,我找不到任何可以帮助我的东西..感谢您帮助我;]

最佳答案

使用别名:

connection.query('SELECT SUM(producFinalPrice) AS productFinalSum FROM new_sell', ...
^^^^^^^^

然后,当您在 Node 中解析 JSON 时,检查 productFinalSum 键。实际上,我认为您甚至可以使用 SUM(productFinalSum) 来访问您的 JSON,但它看起来很笨拙。

关于mysql - JSON 结果显示 SUM MySQL 命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46312104/

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