我想在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
中做到这一点?