- 浏览: 146028 次
- 性别:
- 来自: 佛山
文章分类
最新评论
-
C393416691:
JNA—JNI终结者,java调用dll、ocx、so最简单的方法 -
C393416691:
JNA—JNI终结者,java调用dll、ocx、so最简单的方法 -
C393416691:
[flash=200,200][url][img][list] ...
JNA—JNI终结者,java调用dll、ocx、so最简单的方法 -
zhdycn:
感谢 LZ 的分享 都把核心 接口 都介绍了一下 一看你 ...
Spring3 MVC -
naily:
naily 写道很非常详细,对于了解spring mvc很有帮 ...
Spring3 MVC
本文是参考官方文档来介绍的,之所以有官方文档还要在这介绍,一方面是就当翻译,毕竟每次要用时去看英文文档比较累,第二是官方文档讲解比较简单,有时光看官方文档不好理解,我在实际操作的情况下可以做些补充。
好了,不多说了,下面正式开始:
mongodb更新有两个命令:
1).update()命令
db.collection.update( criteria, objNew, upsert, multi )
criteria : update的查询条件,类似sql update查询内where后面的
objNew : update的对象和一些更新的操作符(如$,$inc...)等,也可以理解为sql update查询内set后面的
upsert : 这个参数的意思是,如果不存在update的记录,是否插入objNew,true为插入,默认是false,不插入。
multi : mongodb默认是false,只更新找到的第一条记录,如果这个参数为true,就把按条件查出来多条记录全部更新。
例:
db.test0.update( { "count" : { $gt : 1 } } , { $set : { "test2" : "OK"} } ); 只更新了第一条记录
db.test0.update( { "count" : { $gt : 3 } } , { $set : { "test2" : "OK"} },false,true ); 全更新了
db.test0.update( { "count" : { $gt : 4 } } , { $set : { "test5" : "OK"} },true,false ); 只加进去了第一条
db.test0.update( { "count" : { $gt : 5 } } , { $set : { "test5" : "OK"} },true,true ); 全加进去了
db.test0.update( { "count" : { $gt : 15 } } , { $inc : { "count" : 1} },false,true );全更新了
db.test0.update( { "count" : { $gt : 10 } } , { $inc : { "count" : 1} },false,false );只更新了第一条
2).save()命令
db.collection.save( x )
x就是要更新的对象,只能是单条记录。
如果在collection内已经存在一个和x对象相同的"_id"的记录。mongodb就会把x对象替换collection内已经存在的记录,否则将会插入x对象,如果x内没有_id,系统会自动生成一个再插入。相当于上面update语句的upsert=true,multi=false的情况。
例:
db.test0.save({count:40,test1:"OK"}); #_id系统会生成
db.test0.save({_id:40,count:40,test1:"OK"}); #如果test0内有_id等于40的,会替换,否则插入。
mongodb的更新操作符:
1) $inc
用法:{ $inc : { field : value } }
意思对一个数字字段field增加value,例:
> db.test0.find( { "_id" : 15 } );
{ "_id" : { "floatApprox" : 15 }, "count" : 16, "test1" : "TESTTEST", "test2" : "OK", "test3" : "TESTTEST", "test4" : "OK", "test5" : "OK" }
> db.test0.update( { "_id" : 15 } , { $inc : { "count" : 1 } } );
> db.test0.find( { "_id" : 15 } );
{ "_id" : { "floatApprox" : 15 }, "count" : 17, "test1" : "TESTTEST", "test2" : "OK", "test3" : "TESTTEST", "test4" : "OK", "test5" : "OK" }
> db.test0.update( { "_id" : 15 } , { $inc : { "count" : 2 } } );
> db.test0.find( { "_id" : 15 } );
{ "_id" : { "floatApprox" : 15 }, "count" : 19, "test1" : "TESTTEST", "test2" : "OK", "test3" : "TESTTEST", "test4" : "OK", "test5" : "OK" }
> db.test0.update( { "_id" : 15 } , { $inc : { "count" : -1 } } );
> db.test0.find( { "_id" : 15 } );
{ "_id" : { "floatApprox" : 15 }, "count" : 18, "test1" : "TESTTEST", "test2" : "OK", "test3" : "TESTTEST", "test4" : "OK", "test5" : "OK" }
2) $set
用法:{ $set : { field : value } }
就是相当于sql的set field = value,全部数据类型都支持$set。例:
> db.test0.update( { "_id" : 15 } , { $set : { "test1" : "testv1","test2" : "testv2","test3" : "testv3","test4" : "testv4" } } );
> db.test0.find( { "_id" : 15 } );
{ "_id" : { "floatApprox" : 15 }, "count" : 18, "test1" : "testv1", "test2" : "testv2", "test3" : "testv3", "test4" : "testv4", "test5" : "OK" }
3) $unset
用法:{ $unset : { field : 1} }
顾名思义,就是删除字段了。例:
> db.test0.update( { "_id" : 15 } , { $unset : { "test1":1 } } );
> db.test0.find( { "_id" : 15 } );
{ "_id" : { "floatApprox" : 15 }, "count" : 18, "test2" : "testv2", "test3" : "testv3", "test4" : "testv4", "test5" : "OK" }
> db.test0.update( { "_id" : 15 } , { $unset : { "test2": 0 } } );
> db.test0.find( { "_id" : 15 } );
{ "_id" : { "floatApprox" : 15 }, "count" : 18, "test3" : "testv3", "test4" : "testv4", "test5" : "OK" }
> db.test0.update( { "_id" : 15 } , { $unset : { "test3":asdfasf } } );
Fri May 14 16:17:38 JS Error: ReferenceError: asdfasf is not defined (shell):0
> db.test0.update( { "_id" : 15 } , { $unset : { "test3":"test" } } );
> db.test0.find( { "_id" : 15 } );
{ "_id" : { "floatApprox" : 15 }, "count" : 18, "test4" : "testv4", "test5" : "OK" }
没看出field : 1里面的1是干什么用的,反正只要有东西就行。
4) $push
用法:{ $push : { field : value } } 把value追加到field里面去,field一定要是数组类型才行,如果field不存在,会新增一个数组类型加进去。例: > db.test0.update( { "_id" : 15 } , { $set : { "test1" : ["aaa","bbb"] } } ); > db.test0.find( { "_id" : 15 } ); { "_id" : { "floatApprox" : 15 }, "count" : 18, "test1" : [ "aaa", "bbb" ], "test4" : "testv4", "test5" : "OK" } > db.test0.update( { "_id" : 15 } , { $push : { "test1": "ccc" } } ); > db.test0.find( { "_id" : 15 } ); { "_id" : { "floatApprox" : 15 }, "count" : 18, "test1" : [ "aaa", "bbb", "ccc" ], "test4" : "testv4", "test5" : "OK" } > db.test0.update( { "_id" : 15 } , { $push : { "test2": "ccc" } } ); > db.test0.find( { "_id" : 15 } ); { "_id" : { "floatApprox" : 15 }, "count" : 18, "test1" : [ "aaa", "bbb", "ccc" ], "test2" : [ "ccc" ], "test4" : "testv4", "test5" : "OK" } > db.test0.update( { "_id" : 15 } , { $push : { "test1": ["ddd","eee"] } } ); > db.test0.find( { "_id" : 15 } ); { "_id" : { "floatApprox" : 15 }, "count" : 18, "test1" : [ "aaa", "bbb", "ccc", [ "ddd", "eee" ] ], "test2" : [ "ccc" ], "test4" : "testv4", "test5" : "OK" }
5) $pushAll
用法:{ $pushAll : { field : value_array } }
同$push,只是一次可以追加多个值到一个数组字段内。例:
> db.test0.find( { "_id" : 15 } );
{ "_id" : { "floatApprox" : 15 }, "count" : 18, "test1" : [ "aaa", "bbb", "ccc", [ "ddd", "eee" ] ], "test2" : [ "ccc" ], "test4" : "testv4", "test5" : "OK" }
> db.test0.update( { "_id" : 15 } , { $pushAll : { "test1": ["fff","ggg"] } } );
> db.test0.find( { "_id" : 15 } );
{ "_id" : { "floatApprox" : 15 }, "count" : 18, "test1" : [ "aaa", "bbb", "ccc", [ "ddd", "eee" ], "fff", "ggg" ], "test2" : [ "ccc" ], "test4" : "testv4", "test5" : "OK" }
6) $addToSet
用法:{ $addToSet : { field : value } } 增加一个值到数组内,而且只有当这个值不在数组内才增加。例: > db.test0.update( { "_id" : 15 } , { $addToSet : { "test1": {$each : ["444","555"] } } } ); > db.test0.find( { "_id" : 15 } ); { "_id" : { "floatApprox" : 15 }, "count" : 18, "test1" : [ "aaa", "bbb", "ccc", [ "ddd", "eee" ], "fff", "ggg", [ "111", "222" ], "444", "555" ], "test2" : [ "ccc" ], "test4" : "testv4", "test5" : "OK" } > db.test0.update( { "_id" : 15 } , { $addToSet : { "test1": {$each : ["444","555"] } } } ); > db.test0.find( { "_id" : 15 } ); { "_id" : { "floatApprox" : 15 }, "count" : 18, "test1" : [ "aaa", "bbb", "ccc", [ "ddd", "eee" ], "fff", "ggg", [ "111", "222" ], "444", "555" ], "test2" : [ "ccc" ], "test4" : "testv4", "test5" : "OK" } > db.test0.update( { "_id" : 15 } , { $addToSet : { "test1": ["444","555"] } } ); > db.test0.find( { "_id" : 15 } ); { "_id" : { "floatApprox" : 15 }, "count" : 18, "test1" : [ "aaa", "bbb", "ccc", [ "ddd", "eee" ], "fff", "ggg", [ "111", "222" ], "444", "555", [ "444", "555" ] ], "test2" : [ "ccc" ], "test4" : "testv4", "test5" : "OK" } > db.test0.update( { "_id" : 15 } , { $addToSet : { "test1": ["444","555"] } } ); > db.test0.find( { "_id" : 15 } ); { "_id" : { "floatApprox" : 15 }, "count" : 18, "test1" : [ "aaa", "bbb", "ccc", [ "ddd", "eee" ], "fff", "ggg", [ "111", "222" ], "444", "555", [ "444", "555" ] ], "test2" : [ "ccc" ], "test4" : "testv4", "test5" : "OK" } 7) $pop 删除数组内的一个值 用法: 删除最后一个值:{ $pop : { field : 1 } }
删除第一个值:{ $pop : { field : -1 } } 注意,只能删除一个值,也就是说只能用1或-1,而不能用2或-2来删除两条。mongodb 1.1及以后的版本才可以用,例: > db.test0.find( { "_id" : 15 } ); { "_id" : { "floatApprox" : 15 }, "count" : 18, "test1" : [ "bbb", "ccc", [ "ddd", "eee" ], "fff", "ggg", [ "111", "222" ], "444" ], "test2" : [ "ccc" ], "test4" : "testv4", "test5" : "OK" } > db.test0.update( { "_id" : 15 } , { $pop : { "test1": -1 } } ); > db.test0.find( { "_id" : 15 } ); { "_id" : { "floatApprox" : 15 }, "count" : 18, "test1" : [ "ccc", [ "ddd", "eee" ], "fff", "ggg", [ "111", "222" ], "444" ], "test2" : [ "ccc" ], "test4" : "testv4", "test5" : "OK" } > db.test0.update( { "_id" : 15 } , { $pop : { "test1": 1 } } ); > db.test0.find( { "_id" : 15 } ); { "_id" : { "floatApprox" : 15 }, "count" : 18, "test1" : [ "ccc", [ "ddd", "eee" ], "fff", "ggg", [ "111", "222" ] ], "test2" : [ "ccc" ], "test4" : "testv4", "test5" : "OK" } 8) $pull 用法:$pull : { field : value } } 从数组field内删除一个等于value值。例: > db.test0.find( { "_id" : 15 } ); { "_id" : { "floatApprox" : 15 }, "count" : 18, "test1" : [ "ccc", [ "ddd", "eee" ], "fff", "ggg", [ "111", "222" ] ], "test2" : [ "ccc" ], "test4" : "testv4", "test5" : "OK" } > db.test0.update( { "_id" : 15 } , { $pull : { "test1": "ggg" } } ); > db.test0.find( { "_id" : 15 } ); { "_id" : { "floatApprox" : 15 }, "count" : 18, "test1" : [ "ccc", [ "ddd", "eee" ], "fff", [ "111", "222" ] ], "test2" : [ "ccc" ], "test4" : "testv4", "test5" : "OK" } 9) $pullAll 用法:{ $pullAll : { field : value_array } } 同$pull,可以一次删除数组内的多个值。例: > db.test0.find( { "_id" : 15 } ); { "_id" : { "floatApprox" : 15 }, "count" : 18, "test1" : [ "ccc", [ "ddd", "eee" ], "fff", [ "111", "222" ] ], "test2" : [ "ccc" ], "test4" : "testv4", "test5" : "OK" } > db.test0.update( { "_id" : 15 } , { $pullAll : { "test1": [ "ccc" , "fff" ] } } ); > db.test0.find( { "_id" : 15 } ); { "_id" : { "floatApprox" : 15 }, "count" : 18, "test1" : [ [ "ddd", "eee" ], [ "111", "222" ] ], "test2" : [ "ccc" ], "test4" : "testv4", "test5" : "OK" } 10) $ 操作符 $是他自己的意思,代表按条件找出的数组里面某项他自己。呵呵,比较坳口。看一下官方的例子: > t.find() { "_id" : ObjectId("4b97e62bf1d8c7152c9ccb74"), "title" : "ABC", "comments" : [ { "by" : "joe", "votes" : 3 }, { "by" : "jane", "votes" : 7 } ] } > t.update( {'comments.by':'joe'}, {$inc:{'comments.$.votes':1}}, false, true ) > t.find() { "_id" : ObjectId("4b97e62bf1d8c7152c9ccb74"), "title" : "ABC", "comments" : [ { "by" : "joe", "votes" : 4 }, { "by" : "jane", "votes" : 7 } ] } 需要注意的是,$只会应用找到的第一条数组项,后面的就不管了。还是看例子: > t.find(); { "_id" : ObjectId("4b9e4a1fc583fa1c76198319"), "x" : [ 1, 2, 3, 2 ] } > t.update({x: 2}, {$inc: {"x.$": 1}}, false, true); > t.find(); 还有注意的是$配合$unset使用的时候,会留下一个null的数组项,不过可以用{$pull:{x:null}}删除全部是null的数组项。例: > t.insert({x: [1,2,3,4,3,2,3,4]}) > t.find() { "_id" : ObjectId("4bde2ad3755d00000000710e"), "x" : [ 1, 2, 3, 4, 3, 2, 3, 4 ] } > t.update({x:3}, {$unset:{"x.$":1}}) > t.find() { "_id" : ObjectId("4bde2ad3755d00000000710e"), "x" : [ 1, 2, null, 4, 3, 2, 3, 4 ] } { "_id" : ObjectId("4b9e4a1fc583fa1c76198319"), "x" : [ 1, 3, 3, 2 ] }
发表评论
-
Mysql 基于 Amoeba 的 读写分离
2015-01-15 11:46 587假设有这样的使用场景,有三个数据库节点分别命名为Ma ... -
mysql 使用位运算
2012-10-16 03:03 1396与运算 a & b , 或运算 a | b , 异 ... -
mongodb objectid
2011-07-06 15:03 1649存储在mongodb集合中的每个文档(document) ... -
mongodb安装及使用
2011-07-02 21:22 1023mongodb由C++写就,其名字来自humongous这个单 ... -
MongoDB设置访问权限
2011-07-02 21:12 870原文地址:http://www.cnblogs.com/zen ... -
mongodb
2011-03-19 21:45 1327MongoDB是一个基于分布式文件存储的数据库。由C++语言编 ... -
HiveDB, 一个横向切分MySQL海量数据的框架
2011-02-16 21:52 12441. HiveDB是在2007年5月"Bay Are ... -
Nested Sets java实现
2010-06-02 20:25 0转自:http://laoyao.iteye.com/blog ... -
Trees in SQL Nested Sets and Materizlized Path - Janwer Weblog
2010-06-02 20:24 0Trees in SQL: Nested Sets and M ... -
windows下Mysql master-slave
2010-05-16 00:18 1294windows下Mysql master-slave 文章分 ...
相关推荐
1. **基本 CRUD 操作**:这些数据可以帮助你练习插入(Insert)、查询(Find)、更新(Update)和删除(Delete)操作,理解如何在MongoDB中处理单个文档和批量文档。 2. **聚合框架**:可能包含各种聚合管道示例,...
在本手册中,我们将深入探讨MongoDB的核心语法,帮助您更有效地管理和操作数据。 1. 数据模型: MongoDB采用JSON格式(BSON)存储数据,这种格式允许嵌套结构,适合复杂的数据类型。文档是MongoDB中的基本数据单元...
MongoDB是一种流行的开源文档型数据库,它以JSON格式存储数据,具有高性能、高可用性和可扩展性。在本文中,我们将深入探讨MongoDB的一些基本使用和常见操作。 1、创建、查询数据库 创建数据库非常简单,只需使用`...
### MongoDB语法使用说明详解 #### 一、前言与背景 MongoDB作为一款高性能、开源、面向文档的NoSQL数据库,凭借其灵活的数据模型、强大的查询能力以及易于扩展的特性,已经成为众多企业和开发者首选的数据存储解决...
MongoDB中文手册是开发者必备的参考资料,它详细介绍了MongoDB的各种操作和语法用法,帮助用户深入理解并有效利用这个强大的数据库系统。 手册首先会介绍MongoDB的基本概念,包括文档(Documents)、集合...
3. **CRUD操作**:MongoDB提供了创建(Create)、读取(Read)、更新(Update)和删除(Delete)数据的基本操作。与SQL相比,它们具有不同的语法和方法,例如使用`insertOne()`、`find()`、`updateOne()`和`delete...
MongoDB的一大特色是它的查询语言,它支持类似于面向对象的查询语法,能够执行类似于关系数据库的单表查询。此外,MongoDB支持创建索引,包括全文索引、地理位置索引等,以提高查询性能。查询操作丰富,几乎涵盖了...
2. CRUD操作:详细解释创建(Create)、读取(Read)、更新(Update)和删除(Delete)数据的方法。 3. 查询语言:讲解MongoDB的查询语法,包括查询条件、投影、排序和分组等。 4. 数据模型设计:讨论如何利用...
这份期末考试测试题旨在帮助学生巩固MongoDB的相关知识,包括数据库管理、数据操作、查询语法、索引优化等核心概念。 1. 数据库创建与数据插入: 在MongoDB中,可以使用`use`命令切换到特定的数据库,如`xsgl`,...
总结来说,Mongo4js为JavaScript开发者提供了一个方便的工具,使得他们能够在JavaScript环境中使用MongoDB的查询语法处理数据,这对于Node.js开发者尤其是熟悉MongoDB的人来说,无疑提高了代码的可读性和开发效率。...
9. **CRUD操作**:与MySQL类似,Laravel-MongoDB支持常见的增删查改操作,如`create()`,`find()`,`update()`,`delete()`等。 10. **聚合框架**:MongoDB提供了强大的聚合框架,用于处理复杂的分析查询,Laravel-...
1. **文档存储**:MongoDB以JSON格式的文档存储数据,使得数据结构与应用程序更加贴近。 2. **弹性伸缩**:支持水平扩展,通过分片集群实现大数据量存储。 3. **高性能**:内存映射文件系统(MMAPv1或WiredTiger)...
- MongoDB使用类似SQL的查询语法,如`find()`用于查找文档,`update()`用于更新文档,`remove()`用于删除文档。 - 查询条件可以基于字段值,也可以使用正则表达式、范围查询等复杂条件。 - MongoDB还支持聚合操作...
- 查询语言:MongoDB使用类似JavaScript的查询语法,支持丰富的查询表达式和正则表达式。 - 聚合框架:提供了管道操作来处理数据,进行复杂的数据分析和报表生成。 6. MapReduce: - MapReduce是MongoDB中的...
### MongoDB数据库基本操作详解 ...请注意,MongoDB的具体语法和操作可能因版本和编程语言的不同而有所差异。因此,在实际操作中,建议参考MongoDB的官方文档或相关教程以获取更详细和准确的信息。
数据的插入、修改、查询和删除是数据库操作的核心,MongoDB提供了多种语法格式和操作符来支持这些基本操作。例如,插入文档可以使用insertOne()、insertMany()方法,查询文档可以使用find()方法,修改文档可以使用...
MongoDB支持JavaScript语法,可以在数据库层面执行脚本,这使得其与后端开发语言(如Java)的集成变得更为便捷。 在MongoDB中,数据的基本单位是文档(Document),类似于传统数据库的行。文档由多个字段(Field)...
3. ** 查询语句**:MongoDB提供了丰富的查询语法,包括基本查询、聚合框架、正则表达式匹配等。例如,使用`find()`方法可以查找满足特定条件的文档,而`$match`、`$group`等聚合管道操作符可用于复杂的数据分析。 4...