$concat (aggregation)

在本页面

定义

$concat

连接字符串并返回连接的字符串。

$concat具有以下语法:

{ $concat: [ <expression1>, <expression2>, ... ] }

参数可以解析为字符串,可以是任何有效的表达式。有关表达式的更多信息,请参见 表达式。

如果参数解析为的值null或指向缺少的字段,则$concat返回null

例子

考虑inventory包含以下文档的集合:

{ "_id" : 1, "item" : "ABC1", quarter: "13Q1", "description" : "product 1" }
{ "_id" : 2, "item" : "ABC2", quarter: "13Q4", "description" : "product 2" }
{ "_id" : 3, "item" : "XYZ1", quarter: "14Q2", "description" : null }

以下操作使用$concat运算符将item字段和description带有“-”定界符的字段连接起来。

db.inventory.aggregate(
   [
      { $project: { itemDescription: { $concat: [ "$item", " - ", "$description" ] } } }
   ]
)

该操作返回以下结果:

{ "_id" : 1, "itemDescription" : "ABC1 - product 1" }
{ "_id" : 2, "itemDescription" : "ABC2 - product 2" }
{ "_id" : 3, "itemDescription" : null }

译者:李冠飞

校对:

最后更新于