1、数据库管理命令
1.1、查看数据
show dbs:可以查看当前mongod中的所有数据库;
db:可以查看当前连接对应的数据库;
> show dbs
admin 0.000GB
config 0.000GB
local 0.000GB
test 0.000GB
> db
city
1.2、创建数据库
use DATABASE_NAME:如果无数据库,则创建新数据库,否则进行数据库的切换。
> use city
switched to db city
注意: 在 MongoDB 中,集合只有在内容插入后才会创建,就是说,创建集合(数据表)后要再插入一个文档(记录),集合才会真正创建。
1.3、删除数据库
db.dropDatabase():删除数据库。
> show dbs
admin 0.000GB
city 0.000GB
config 0.000GB
local 0.000GB
test 0.000GB
> use city
switched to db city
> db.dropDatabase()
{ "dropped" : "city", "ok" : 1 }
> show dbs
admin 0.000GB
config 0.000GB
local 0.000GB
test 0.000GB
2、集合管理命令
2.1、创建集合
语法格式:
db.createCollection(name, options)
参数说明:
- name: 要创建的集合名称
- options: 可选参数, 指定有关内存大小及索引的选项
options参数:
字段 | 类型 | 描述 |
---|---|---|
capped | Bool | (可选)如果为 true,则创建固定集合。固定集合是指有着固定大小的集合,当达到最大值时,它会自动覆盖最早的文档。当该值为 true 时,必须指定 size 参数。 |
autoIndexId | Bool | (可选)如为 true,自动在 _id 字段创建索引。默认为 false。 |
size | Number | (可选)为固定集合指定一个最大值,以千字节计(KB)。如果 capped 为 true,也需要指定该字段。 |
max | Number | (可选)指定固定集合中包含文档的最大数量。 |
命令示例:
> use location
switched to db location
> db
location
> db.createCollection("city",{capped:true,autoIndexId:true,size:6142800,max:10})
{
"note" : "the autoIndexId option is deprecated and will be removed in a future release",
"ok" : 1
}
2.2、查看集合
语法格式:
show collections
命令示例:
> db
location
> show collections
city
2.3、删除集合
语法格式:
db.collection.drop()
其中collection为集合名。如果成功删除选定集合,则 drop() 方法返回 true,否则返回 false。
命令示例:
> db
location
> show collections
city
> db.city.drop()
true
> show collections
>
3、文档管理命令
3.1、插入文档
MongoDB 使用 insert() / insertOne / insertMany() / save() 方法向集合中插入文档。
语法格式:
db.COLLECTION_NAME.insert(document)
命令示例:
> db
location
> db.createCollection("city")
{ "ok" : 1 }
> show collections
city
>
> db.city.insertOne({"name":"北京","country":"中国","code":1,"captial":true})
{
"acknowledged" : true,
"insertedId" : ObjectId("5de52e826bba334fecac2f28")
}
> db.city.insertMany([{"name":"上海","country":"中国","code":2,"captial":false},{"name":"广州","country":"中国","code":3,"captial":false}])
{
"acknowledged" : true,
"insertedIds" : [
ObjectId("5de52ffd6bba334fecac2f29"),
ObjectId("5de52ffd6bba334fecac2f2a")
]
}
> db.city.find()
{ "_id" : ObjectId("5de52e826bba334fecac2f28"), "name" : "北京", "country" : "中国", "code" : 1, "captial" : true }
{ "_id" : ObjectId("5de52ffd6bba334fecac2f29"), "name" : "上海", "country" : "中国", "code" : 2, "captial" : false }
{ "_id" : ObjectId("5de52ffd6bba334fecac2f2a"), "name" : "广州", "country" : "中国", "code" : 3, "captial" : false }
3.2、更新文档
update用于更新已经存在的文档。
语法格式:
db.collection.update(
<query>,
<update>,
{
upsert: <boolean>,
multi: <boolean>,
writeConcern: <document>
}
)
参数说明:
- query : update的查询条件,类似sql update查询内where后面的。
- update : update的对象和一些更新的操作符(如inc...)等,也可以理解为sql update查询内set后面的
- upsert : 可选,这个参数的意思是,如果不存在update的记录,是否插入objNew,true为插入,默认是false,不插入。
- multi : 可选,mongodb 默认是false,只更新找到的第一条记录,如果这个参数为true,就把按条件查出来多条记录全部更新。
- writeConcern :可选,抛出异常的级别。
命令示例:
> db.city.update({"captial":false},{$set:{"bigCity":true}},true,true)
WriteResult({ "nMatched" : 2, "nUpserted" : 0, "nModified" : 2 })
>
> db.city.find()
{ "_id" : ObjectId("5de52e826bba334fecac2f28"), "name" : "北京", "country" : "中国", "code" : 1, "captial" : true }
{ "_id" : ObjectId("5de52ffd6bba334fecac2f29"), "name" : "上海", "country" : "中国", "code" : 2, "captial" : false, "bigCity" : true }
{ "_id" : ObjectId("5de52ffd6bba334fecac2f2a"), "name" : "广州", "country" : "中国", "code" : 3, "captial" : false, "bigCity" : true }
>
3.3、删除文档
语法格式:
db.collection.remove(
<query>,
<justOne>
)