拼接字符串操做,返回拼接後的字符串。語法格式以下:javascript
{ $concat: [ <expression1>, <expression2>, ... ] }
參數能夠是任何有效的表達式,只要它們解析爲字符串便可。 有關表達式的更多信息,請參閱 表達式。
準備如下測試數據:html
db.inventory.drop(); var rows = [ { "_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 }, { "_id" : 4, "item" : "CCCC", quarter: "4000"} ]; db.inventory.insert(rows);
使用 $conct 鏈接 item 和 description字段,字段之間以 「-」 分割:java
db.inventory.aggregate( [ { $project: { itemDescription: { $concat: [ "$item", " - ", "$description" ] } } } ] )
運行結果以下:mongodb
{ "_id" : 1, "itemDescription" : "ABC1 - product 1"}, { "_id" : 2, "itemDescription" : "ABC2 - product 2"}, { "_id" : 3, "itemDescription" : null}, { "_id" : 4, "itemDescription" : null}
若是數據庫中有不能解析成字符串的異常數據,例如以下數據:數據庫
{ "_id" : 5, "item" : "CCCC", quarter: "4000", "description" : 4}
則查詢時會拋錯誤,錯誤信息以下:express
{ "message" : "$concat only supports strings, not double", "ok" : 0, "code" : 16702, "codeName" : "Location16702", "name" : "MongoError" }
在使用 $concat 是作字符串拼接操做時,若是參數解析爲null值或引用缺乏的字段,則 $concat 返回null。學習
來自我的博客:學習園
原文地址: https://xuexiyuan.cn/article/detail/222.html