小编典典

如何从命令行删除 MongoDB 数据库?

all

从我的 bash 提示符中执行此操作的最简单方法是什么?


阅读 93

收藏
2022-03-01

共1个答案

小编典典

像这样:

mongo <dbname> --eval "db.dropDatabase()"

有关从命令行编写 shell 的更多信息:https ://docs.mongodb.com/manual/tutorial/write-scripts-
for-the-mongo-
shell/#scripting

2022-03-01