MongoDBフィールドの$concat(aggregation)

1947 ワード

$concat
スペル文字列操作は、スペル後の文字列を返します.構文の形式は次のとおりです.
{ $concat: [ , , ... ] }

パラメータは、文字列として解析される限り、任意の有効な式です.式の詳細については、式を参照してください.

次のテストデータを準備します.
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フィールドを接続し、フィールド間を「-」で分割します.
db.inventory.aggregate(
   [
      { $project: { itemDescription: { $concat: [ "$item", " - ", "$description" ] } } }
   ]
)

実行結果は次のとおりです.
{ "_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}

エラーメッセージは次のように表示されます.
{
    "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