如何在mongodb中基于相同字段从两个不同的集合中获取数据

时间:2018-02-28 11:44:11

标签: mongodb nodes

我有两个系列: 1.app有下面例子的文件

struct

2.category,其中包含以下示例文档

{
    "_id" : "1",
    "app_name" : "Cab",
    "active" : "A",
},
{
    "_id" : "2",
    "app_name" : "Gym",
    "active" : "A",
}

我想执行类似

的操作
{
    "_id" : "1",
    "app_id" : 1,
    "header" : "Request",
    "onbehalf" : "N",
    "project_onbehalf" : "N",

}

修改

我试过这个查询

select app.app_id,app.app_name,category.header,category.onbehalf from app category where category.app_id=app._id AND app._id = "2"

但是我成功地执行了脚本,但是没有结果显示, 执行查询后。

任何帮助都会很明显。

提前致谢。

0 个答案:

没有答案