gpt4 book ai didi

如果不存在,MongoDB 将字段插入到现有文档

转载 作者:IT老高 更新时间:2023-10-28 13:36:56 24 4
gpt4 key购买 nike

我有一个这样的文件(这很简单):

{
'name' : 'test',
'age' : 16
}

还有这个

{
'name' : 'test2'
}

如果不存在,我想将所有“年龄”设置为 14。

我该怎么做?

最佳答案

试试 $exists operator :

$this->mongolib->update('people', array('age' => array('$exists' => false)), array('$set' => array('age' => 14)), array('upsert' => true, 'multiple' => true));

关于如果不存在,MongoDB 将字段插入到现有文档,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11554254/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com