时间:2021-05-24
紧接着上篇来,这篇主要讲,mongodb的group功能,做的还是挺强大的,相当对于find(),skip(),distinct()等,用法比较复杂。
测试数据:
复制代码 代码如下:
> db.fruit.find();
{ "_id" : 1, "category" : "fruit", "name" : "apple" }
{ "_id" : 2, "category" : "fruit", "name" : "peach" }
{ "_id" : 3, "category" : "fruit", "name" : "banana" }
{ "_id" : 4, "category" : "veggie", "name" : "corn" }
{ "_id" : 5, "category" : "veggie", "name" : "broccoli" }
1、根据category分组
复制代码 代码如下:
> db.fruit.group(
{
key: { category: 1},
reduce: function(obj, prev) {
prev.items.push(obj.name);
},
initial: { items : [] }
}
);
[
{
"category" : "fruit",
"items" : [
"apple",
"peach",
"banana"
]
},
{
"category" : "veggie",
"items" : [
"corn",
"broccoli"
]
}
]
php代码如下:
复制代码 代码如下:
$keys = array("category" => 1);
$initial = array("items" => array());
$reduce = "function (obj, prev) { prev.items.push(obj.name); }";
$g = $collection->group($keys, $initial, $reduce);
print_r($g); //结果如下。
Array
(
[retval] => Array
(
[0] => Array
(
[category] => fruit
[items] => Array
(
[0] => apple
[1] => peach
[2] => banana
)
)
[1] => Array
(
[category] => veggie
[items] => Array
(
[0] => corn
[1] => broccoli
)
)
)
[count] => 5
[keys] => 2
[ok] => 1
)
2、根据category来分组,并统计count
复制代码 代码如下:
> db.fruit.group(
{
key: { category: 1},
cond: { _id: { $gt: 2 } },
reduce: function(obj, prev) {
prev.items.push(obj.name);
prev.count++;
},
initial: { items : [] ,count:0}
}
);
[
{
"category" : "fruit",
"items" : [
"banana"
],
"count" : 1
},
{
"category" : "veggie",
"items" : [
"corn",
"broccoli"
],
"count" : 2
}
]
php代码如下:
复制代码 代码如下:
$keys = array("category" => 1);
$initial = array("items" => array(),'count'=>0);
$reduce = "function (obj, prev) { " .
"prev.items.push(obj.name); " .
"prev.count++;" .
"}";
$condition = array('condition' => array("_id" => array( '$gt' => 2)));
$g = $collection->group($keys, $initial, $reduce, $condition);
print_r($g); //结果如下。
Array
(
[retval] => Array
(
[0] => Array
(
[category] => fruit
[items] => Array
(
[0] => banana
)
[count] => 1
)
[1] => Array
(
[category] => veggie
[items] => Array
(
[0] => corn
[1] => broccoli
)
[count] => 2
)
)
[count] => 3
[keys] => 2
[ok] => 1
)
3、利用aggregate group功能,也挺强大
复制代码 代码如下:
> db.fruit.aggregate([
{ $match: { _id: {$gt:0} } },
{ $group: { _id: "$category", count: { $sum: 1 } } },
{ $sort: { count: -1 } }
]);
{ "_id" : "fruit", "count" : 3 }
{ "_id" : "veggie", "count" : 2 }
php代码如下:
复制代码 代码如下:
$cond = array(
array(
'$match' => array('_id' => array('$gt' => 0)),
),
array(
'$group' => array(
'_id' => '$category',
'count' => array('$sum' => 1),
),
),
array(
'$sort' => array("count" => -1),
),
);
$result = $collection->aggregate($cond);
print_r($result); //结果如下:
Array
(
[result] => Array
(
[0] => Array
(
[_id] => fruit
[count] => 3
)
[1] => Array
(
[_id] => veggie
[count] => 2
)
)
[ok] => 1
)
mongodb 的select 操作有很多,在这里,只是说了一些常用的功能。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了PHP简单操作MongoDB的方法。分享给大家供大家参考,具体如下:php操作MongoDB的话首先从网上下载MongoDB的扩展包,https:
本文实例讲述了PHP操作MongoDB实现增删改查功能。分享给大家供大家参考,具体如下:MongoDB的PHP驱动提供了一些核心类来操作MongoDB,总的来说
本文实例讲述了php操作mongodb封装类与用法。分享给大家供大家参考,具体如下:近来学习了mongodb,刚好是做php开发的,随便写了php操作mongo
本文实例讲述了php操作MongoDB类的方法。分享给大家供大家参考。具体如下:1.MyMongo.php文件:log_error("TheMongoDBPEC
本文实例讲述了php操作mongoDB的方法。分享给大家供大家参考。具体分析如下:mongoDB数据库是一种以json格式存储的数据库,非常适用于各种应用开发,