MongoDB基础操作

2019-09-28  本文已影响0人  突突兔007

创建数据库

use db

删除数据库

db.dropDatabase()

查看所有数据库

show dbs

创建集合

db.createCollection(name,options)

options 可选参数如下:

capped boolean :如果为 true,则创建固定集合。固定集合是指有着固定大小的集合,当达到最大值时,它会自动覆盖最早的文档。
当该值为 true 时,必须指定 size 参数。
size 数值 :为固定集合指定一个最大值(以字节计)。如果 capped 为 true,也需要指定该字段
autoIndexId boolean:如为 true,自动在 _id 字段创建索引。默认为 false
max 数值:指定固定集合中包含文档的最大数量。

创建student集合,相当于在mysql中创建student表

db.createCollection("student")

查看已有集合

show collections

如下可以自动创建集合,将自动创建teacher集合,insertOne,insertMany为mongodb3.2之后的新特性

db.teacher.insertOne({"name":"王老师"})

删除集合,成功返回true,失败返回false

db.collection.drop()

插入文档,如果该集合不存在则创建

db.collection_name.insert(document)

db.student.isnert({name:"张三",age:18,"grade":"3年级一般"})

插入单条

db.collection.insertOne({})

插入多条

db.collection.insertMany({},{},{})

更新文档

参数说明:
query : update的查询条件,类似sql update查询内where后面的。
update : update的对象和一些更新的操作符(如$,$inc...)等,也可以理解为sql update查询内set后面的
upsert : 可选,这个参数的意思是,如果不存在update的记录,是否插入objNew,true为插入,默认是false,不插入。
multi : 可选,mongodb 默认是false,只更新找到的第一条记录,如果这个参数为true,就把按条件查出来多条记录全部更新。
writeConcern :可选,抛出异常的级别

db.collection.update(
<query>,
<update>,
{
upsert:<boolean>,
multi:<boolean>,
writeConcern:<document>
}
)

如: 将name字段的值更新为zhagnsan1,条件是id=1

db.student.update({id:"1"},{name:"zhangsan1"})

save() 传入的文档替换已有的文档,语法如下

参数 writeConcern:可选

db.collection.save(
<document>,
{
writeConcern:<document>
}
)

示例: 替换_id为56064f89ade2f21f36b03136的文档数据
db.student.save({
"_id":ObjectId("56064f89ade2f21f36b03136"),
"name":"zhangsan2",
"age":26
})

删除文档

query:删除文档的条件 juestOne:如果为true,则只删除一个文档,默认为false,删除所有匹配的结果

db.collection.remove(
<query>,
<justOne>
)
示例如下:
db.student.remove({id:"2"},true)

查询文档

query:可选,使用查询操作符制定查询条件 projectoin:

db.collection.find(query,projection)

db.collection.find() 查询所有

使用pretty()方法可以格式化返回的文档

其他查询条件写法
db.collection.find({"age":{lt:50}}) age<50的 db.collection.find({"age":{lte:50}}) age<=50的
db.collection.find({"age":{gt:50}}) age>50的 db.collection.find({"age":{gte:50}}) age>=50的
db.collection.find({"age":{$ne:50}}) age!50的

多条件查询 and

db.collection.find({"age":20,"name":"张三"})

多条件查询 or

db.collection.find({$or:[{"age":20,"name":"张三"}]})

$type操作符

获取 "col" 集合中 title 为 String 的数据,

db.col.find({"title" : {$type : 'string'}})

limit skip 用法

读取指定数量的数据记录 该参数指定从MongoDB中读取的记录条数

db.collection.find().limit(number)

skip()方法来跳过指定数量的数据,

以下实例只会显示第二条文档数据

db.col.find({},{"title":1,_id:0}).limit(1).skip(1)

排序 sort() sort() 方法可以通过参数指定排序的字段,并使用 1 和 -1 来指定排序的方式,其中 1 为升序排列,而 -1 是用于降序排列

db.collection.find().sort({"create_time":-1})

索引 语法中Key值为你要创建的索引字段,1为指定按升序创建索引,如果你想按降序来创建索引指定为 -1 即可

创建索引 createIndex()

db.collection.createIndex(keys,options)
如db.student.createIndex({"create_time":1})


createIndex() 接收可选参数,可选参数列表如下:

Parameter Type Description
background Boolean 建索引过程会阻塞其它数据库操作,background可指定以后台方式创建索引,即增加 "background" 可选参数。 "background" 默认值为false。
unique Boolean 建立的索引是否唯一。指定为true创建唯一索引。默认值为false.
name string 索引的名称。如果未指定,MongoDB的通过连接索引的字段名和排序顺序生成一个索引名称。
dropDups Boolean 3.0+版本已废弃。在建立唯一索引时是否删除重复记录,指定 true 创建唯一索引。默认值为 false.
sparse Boolean 对文档中不存在的字段数据不启用索引;这个参数需要特别注意,如果设置为true的话,在索引字段中不会查询出不包含对应字段的文档.。默认值为 false.
expireAfterSeconds integer 指定一个以秒为单位的数值,完成 TTL设定,设定集合的生存时间。
v index version 索引的版本号。默认的索引版本取决于mongod创建索引时运行的版本。
weights document 索引权重值,数值在 1 到 99,999 之间,表示该索引相对于其他索引字段的得分权重。
default_language string 对于文本索引,该参数决定了停用词及词干和词器的规则的列表。 默认为英语
language_override string 对于文本索引,该参数指定了包含在文档中的字段名,语言覆盖默认的language,默认值为 language.

上一篇下一篇

猜你喜欢

热点阅读