我有一份看起来像
的文件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的新手我无法弄清楚如何?
任何人都可以帮助我。