gpt4 book ai didi

php - 在 MongoDB 中求和 "column"

转载 作者:可可西里 更新时间:2023-11-01 09:07:48 25 4
gpt4 key购买 nike

在 MySQL 中,我会简单地使用“SELECT sum(pts) FROM table”来获取表中 pts 列的总和。但是,我正在将此应用程序转换为 MongoDB,但找不到一种直接的方法来获取我的集合中的公共(public)键“类型”的总和。我正在使用 PHP,所以请提供 PHP 代码以使其正常工作。

这是我的数据:

{ "_id" : ObjectId("4f136dab5056f65b61000000"), "p_id" : "3", "g_id" : "1", "type" : "3" }
{ "_id" : ObjectId("4f136dad5056f65760000000"), "p_id" : "8", "g_id" : "1", "type" : "7" }
{ "_id" : ObjectId("4f136daf5056f65860000000"), "p_id" : "6", "g_id" : "1", "type" : "4" }
{ "_id" : ObjectId("4f136db15056f65460000000"), "p_id" : "27", "g_id" : "1", "type" : "2" }

如何让 $sum 等于“type”键的总和?

最佳答案

利用 MongoDB 的新 Aggregation Framework :

$result = $db->command(array(

'aggregate' => 'COLLECTION_NAME',

'pipeline' => array(
// Match:
// We can skip this in case that we don't need to filter
// documents in order to perform the aggregation
array('$match' => array(
// Criteria to match against
)),

// Group:
array('$group' => array(
// Groupby fields:
'_id' => "$fieldname1, $fieldname2, $or_empty, $etc",
// Count:
'count' => array('$sum' => 1),
// Sum:
'type_sum' => array('$sum' => '$type'),
))

// Other aggregations may go here as it's really a PIPE :p

),
));

关于php - 在 MongoDB 中求和 "column",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8874671/

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