gpt4 book ai didi

java - 条件插入 Mongodb

转载 作者:太空宇宙 更新时间:2023-11-04 13:37:32 25 4
gpt4 key购买 nike

我想在Collection1中插入数据取决于Collection2中存储的数据但我不知道如何在 MondoDB 中做到这一点?
我想要这样的 SQL 代码:

insert into collection1 VALUES(...)  
WHERE
((select current from collection2 where id='1')+1)
< (select max from collection2 where id='1')

如何在 MondoDB 中做到这一点?

最佳答案

查看代码Ericanswer几乎相似question

 db.collectionABC.find({ conditionB: 1 }).
forEach( function(i) {
i.ts_imported = new Date();
//write your logic here and insert modified document or a new document.
db.collectionB.insert(i);
});

关于java - 条件插入 Mongodb,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31563493/

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