mongo shell 是 MongoDB 的一个 JavaScript 交互接口,它是 MongoDB 安装包的一个组成部分。您可以使用 mongo shell 来查询和更新数据,以及执行管理操作。
启动 MongoDB Shell
# mongo MongoDB shell version: 3.2.8 connecting to: test
启动时,shell 将自动连接 MongoDB 服务器的 test 数据库,须确保 Mongod 已启动。
查看 db 当前指向哪个数据库
> db
test
切换数据库
> use foobar
switched to db foobar
数据库、集合不必事先创建,例如用 insert 命令直接可以创建新集合
use myNewDatabase db.myCollection.insert( { x: 1 } );