通过从另一个子文档中获取数据来创建嵌入式文档

时间:2015-09-19 06:15:37

标签: mongodb mongodb-query

我有一份看起来像

的文件
org: {
        "name": "tera",
        "orgLocation": {
            "street":"xyz",
            "postal Code": "45893",
            "latitude": "64.23456",
            "longitude": "62.75469"
         }
     }

现在我想将纬度和经度作为单独的子文档保留,以便文档看起来像:

 org: {
     "name":"tera",
     "orgLocation": {
         "street":"xyz",
         "postal Code":"45893",
         "latitude":"64.23456",
         "longitude":"62.75469" 
       },
     orgGeo: {
         "latitude":"64.23456",
         "longitude":"62.75469" 
     }
  }

作为mongoDB的新手我无法弄清楚如何?

任何人都可以帮助我。

0 个答案:

没有答案