本文介绍了如何在MongoDB中重命名集合?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在mongo中是否有一种简便的重命名集合的简单方法?
Is there a dead easy way to rename a collection in mongo? Something like:
db.originalCollectionName.rename('newCollectionName');
如果没有,有效重命名的最佳方法是什么?
And if not, what is the best way to go about effectively renaming one?
推荐答案
关闭。使用 db.originalCollectionName.renameCollection('newCollectionName')
请参见
这篇关于如何在MongoDB中重命名集合?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!