插入多条测试数据 > for(i=1;i<=1000;i ){ ... db.blog.insert({"title":i,"content":"mongodb测试文章。","name":"刘" i}); ... }
db.blog.list.find().limit(10).forEach(function(data){print("title:" data.title);}) 循环forEach 用法
db.blog.findOne(); 取一条数据
db.blog.find();取多条数据 db.blog.remove(); 删除数据集 db.blog.drop();删除表
删除一个数据库: 1.use dbname 2.db.dropDatabase()
======================================查询操作============================= db.blog.find() 相当于select * from blog db.blog.find({"age":27}) 相当于select * from blog where age='27' db.blog.find({"age":27,"name":"xing"}) 相当于select * from blog where age='27' and name="xing" db.blog.find({},{"name":1}) select name from blog ,如果name:0则是不显示name字段 db.blog.find().limit(1) 相当于select * from blog limit 1
db.blog.find().sort({_id:-1}).limit(1)相当于select * from blog order by _id desc limit 1 db.blog.find().skip(10).limit(20) 相当于select * from blog limit 10,20 skip用的时候,一定要注意要是数量多的话skip就会变的很慢,所有的数据库都存在此问题,可以不用skip进行分页,用最后一条记录做为条件 db.blog.find({"age":{"gt > lt < ne != in : in nin: not in all: all
查询 creation_date > '2010-01-01' and creation_date <= '2010-12-31' 的数据 db.users.find({creation_date:{gt:new Date(2010,0,1), lte:new Date(2010,11,31)});
db.blog.find().sort({_id:-1}) 相当于select * from blog order by _id desc 按_id倒序取数据 1为正序,多个条件用,号分开如{name:1,age:-1} db.blog.find({"_id":{"or":[{"age":16},{"name":"xing"}]}) 相当于select * from blog where age = 16 or name = 'xing' db.blog.find({"id_num":{"not":{"
$exists判断字段是否存在
db.blog.find({ a : { exists : true }}); // 如果存在元素a,就返回 db.blog.find({ a : { exists : false }}); // 如果不存在元素a,就返回
type判断字段类型 查询所有name字段是字符类型的 db.users.find({name: {type: 2}}); 查询所有age字段是整型的 db.users.find({age: {
db.blog.find({"z":null}) 返回没有z字段的所有记录 db.blog.find({"name":/^joe/i}) 查找name=joe的所有记录,不区分大小写
db.blog.distinct('content') 查指定的列,并去重
查询数组 db.blog.find({"fruit":{"push":{"fruit":"桔子"}})相当于db.blog.find({"inc":{"size":1}}) slice":10}返回前10条,{"
db.people.find({"name.first":"joe","name.last":"schmoe"}) 子查询如:{"id":34,"name":{"first":"joe","last":"schmoe"}}
db.blog.find({"comments":{"
http://www.mongodb.org/display/DOCS/Advanced Queries#AdvancedQueries-ConditionalOperators:<,<=,>,>= 手册
> use blog > db.blog.insert({"title":"华夏之星的博客","content":"mongodb测试文章。"}); > db.blog.find(); { "_id" : ObjectId("4e29fd262ed6910732fa61df"), "title" : "华夏之星的博客", "content" : "mongodb测试文章。" } > db.blog.update({title:"华夏之星的博客"},{"author":"星星","content":"测试更新"}); > db.blog.find(); { "_id" : ObjectId("4e29fd262ed6910732fa61df"), "author" : "星星", "content" : "测试更新" }
db.blog.insert不带括号则显示源码 db.blog.insert();插入 db.blog.update();更新
> db.blog.update({title:"华夏之星的博客"},{"author":"星星","content":"测试更新"});
update默认情况下只能对符合条件的第一个文档执行操作,要使所有的匹配的文档都得到更新,可以设置第四个参数为 true
> db.blog.update({title:"华夏之星的博客"},{"author":"星星","content":"测试更新"},false,true);
> db.runCommand({getLastError:1}) 可以查看更新了几条信息,n就是条数
备份blog数据库到/soft目录 /usr/local/webserver/mongodb/bin/mongodump -d blog -o /soft
还原数据库
/usr/local/webserver/mongodb/bin/mongorestore -d blog -c blog /soft/blog/blog.bson
导出数据库(备份出来的数据是二进制的,已经经过压缩。) /usr/local/webserver/mongodb/bin/mongodump -h 127.0.0.1 -port 27017 -d demo -o /tmp/demo 导入数据 /usr/local/webserver/mongodb/bin/mongorestore -h 127.0.0.1 -port 27017 --directoryperdb /tmp/demo
5) $all $all和$in类似,但是他需要匹配条件内所有的值: 如有一个对象:
{ a: [ 1, 2, 3 ] }
下面这个条件是可以匹配的:
db.things.find( { a: { $all: [ 2, 3 ] } } );
但是下面这个条件就不行了:
db.things.find( { a: { $all: [ 2, 3, 4 ] } } );
6) $size $size是匹配数组内的元素数量的,如有一个对象:{ a:["foo"] },他只有一个元素: 下面的语句就可以匹配:
db.things.find( { a : { $size: 1 } } );
官网上说不能用来匹配一个范围内的元素,如果想找$size<5之类的,他们建议创建一个字段来保存元素的数量。
8) $type
$type 基于 bson type来匹配一个元素的类型,像是按照类型ID来匹配,不过我没找到bson类型和id对照表。
db.things.find( { a : { $type : 2 } } ); // matches if a is a string db.things.find( { a : { $type : 16 } } ); // matches if a is an int
9)正则表达式 mongo支持正则表达式,如:
db.customers.find( { name : /acme.*corp/i } ); // 后面的i的意思是区分大小写
10) 查询数据内的值 下面的查询是查询colors内red的记录,如果colors元素是一个数据,数据库将遍历这个数组的元素来查询。
db.things.find( { colors : "red" } );
11) $elemMatch 如果对象有一个元素是数组,那么$elemMatch可以匹配内数组内的元素:
> t.find( { x : { $elemMatch : { a : 1, b : { $gt : 1 } } } } ) { "_id" : ObjectId("4b5783300334000000000aa9"), "x" : [ { "a" : 1, "b" : 3 }, 7, { "b" : 99 }, { "a" : 11 } ] }
$elemMatch : { a : 1, b : { $gt : 1 } } 所有的条件都要匹配上才行。
注意,上面的语句和下面是不一样的。
> t.find( { "x.a" : 1, "x.b" : { $gt : 1 } } )
$elemMatch是匹配{ "a" : 1, "b" : 3 },而后面一句是匹配{ "b" : 99 }, { "a" : 11 } 12) 查询嵌入对象的值
db.postings.find( { "author.name" : "joe" } );
注意用法是author.name,用一个点就行了。更详细的可以看这个链接: dot notation
举个例子:
> db.blog.save({ title : "My First Post", author: {name : "Jane", id : 1}})
如果我们要查询 authors name 是Jane的, 我们可以这样:
> db.blog.findOne({"author.name" : "Jane"})
mongodb目前没有或(or)操作符,只能用变通的办法代替,可以参考下面的链接:
http://www.mongodb.org/display/DOCS/OR operations in query expressions
http://www.bumao.com/index.php/mongo_and_php