mongodb 重命名集合

2022/5/23 2:03:57

本文主要是介绍mongodb 重命名集合,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

 

#创建新的集合yb

> for(i=0;i<10;i++){db.yb.insert({'i':i})}
WriteResult({ "nInserted" : 1 })
> show collections

#重命名集合为yb2

> db.yb.renameCollection('yb2');
{ "ok" : 1 }
> show collections
yb2
>

跨数据库重名集合

> use test
switched to db test
> show collections
yb1
> use test2
switched to db test2
> show collections
> db.runCommand({renameCollection:"test.yb1",to:"test2.yb",dropTarget:true});
{
        "ok" : 0,
        "errmsg" : "renameCollection may only be run against the admin database.",
        "code" : 13
}
> show collections
> use admin
switched to db admin
> db.runCommand({renameCollection:"test.yb1",to:"test2.yb",dropTarget:true});
{ "ok" : 1 }
>

 

 

nodejs 中修改集合名称 数据库为users 原集合名称abc 修改成def

var MongoClient = require('mongodb').MongoClient;
//定义mongodb服务器连接地址
var mongoUrl = "mongodb://localhost:27017/";

MongoClient.connect(mongoUrl,function(err,db){
  if (err) throw err;
  var dbo = db.db("users");
  //修改集合名称
  dbo.collection('abc').rename('def',function(err,dda){
    console.log(dda);
  })
//获取所有集合名称
  dbo.admin().listDatabases(function(err,dbs){
    console.log(dbs);
  })

})

 



这篇关于mongodb 重命名集合的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程