前端之家收集整理的这篇文章主要介绍了
如何在RethinkDB中重命名数据库,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
你基本上有两个选择:
1.使用.config方法更新名称
您还可以使用每个数据库和表具有的.config方法更新名称.这看起来像这样:
r
.db("db_name")
.config()
.update({name: "new_db_name"})
2.更新db_config表
您还可以在db_config表上执行查询,只对要更改的数据库执行更新.这看起来像这样:
r
.db('rethinkdb')
.table('db_config')
.filter({ name: 'old_db_name' })
.update({ name: 'new_table_name'})
原文链接:https://www.f2er.com/mssql/77879.html