数据库
首页 > 数据库> > MongoDB 聚合管道的优化与局限

MongoDB 聚合管道的优化与局限

作者:互联网

$out
将聚合管道中的文档,写入到一个新的集合 output 中。如果 output 已存在且有数据,则原有的数据会被清空

db.transactions.aggregate([
    {
        $group: {
            _id: "$currency",
            symbols: {
                $push: "$symbol"
            }
        }
    },
    {
        $out: "output"
    }
])
> db.output.find()
{ "_id" : "USD", "symbols" : [ "AMZN", "AAPL" ] }
{ "_id" : "CNY", "symbols" : [ "600519" ] }

聚合操作的选项设置

标签:聚合,MongoDB,db,symbols,局限,output,id,out
来源: https://www.cnblogs.com/zy108830/p/12639754.html