我想要将新字符串值与现有值连接起来。
假设我的收藏中有 3 个文档
{
"field" : "some"
}
{
"field" : "value"
}
{
"field" : "test"
}
我想编写一个更新查询,它将“新”与现有值连接起来。我更新的文档看起来像
{
"field" : "some new"
}
{
"field" : "value new"
}
{
"field" : "test new"
}
我想要将新字符串值与现有值连接起来。
假设我的收藏中有 3 个文档
{
"field" : "some"
}
{
"field" : "value"
}
{
"field" : "test"
}
我想编写一个更新查询,它将“新”与现有值连接起来。我更新的文档看起来像
{
"field" : "some new"
}
{
"field" : "value new"
}
{
"field" : "test new"
}