찾다

 >  Q&A  >  본문

怎样修改mongodb的collection name和key name

collection的名字是foo,我想改成 post
同时,将url改成site,由于collection很多这样的document,不知道怎样进行批量更新,有方法吗?

{
    '_id': ObjectId()
    'url': ''
}
黄舟黄舟2804일 전580

모든 응답(3)나는 대답할 것이다

  • PHP中文网

    PHP中文网2017-04-21 11:20:06

    컬렉션 이름이 변경됨
    db.foo.rename('post');

    필드 이름 변경

    db.post.update({$rename:{url:'site'}});

    회신하다
    0
  • 巴扎黑

    巴扎黑2017-04-21 11:20:06

    collection 개명
    db.foo.renameCollection('post')

    회신하다
    0
  • PHP中文网

    PHP中文网2017-04-21 11:20:06

    으아악

    회신하다
    0
  • 취소회신하다