user 命令
MongoDB use DATABASE_NAME 用于创建数据库
语法
use DATABASE 语句的基本语法如下:
> use DATABASE_NAME
示例:
如果想创建一个数据库名称 <ithome>, 那么 use DATABASE 语句如下:
> use ithome
switched to db ithome
要检查当前选择的数据库使用命令 db
> db
ithome
如果想检查数据库列表,使用命令 show dbs
> show dbs
local 0.000GB
test 0.035GB
创建的数据库ithome 列表中是不存在的。要显示的数据库,需要把它插入至少一个文件。
> db.person.insert({
"name":"hello mongodb"})
> show dbs
ithome 0.000GB
local 0.000GB
test 0.035GB
在 MongoDB 默认数据库test。如果没有创建任何数据库,然后集合将被存储在测试数据库。
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/4191.html