锁定老帖子 主题:MongoDB高级查询-shell篇(1)
精华帖 (0) :: 良好帖 (1) :: 新手帖 (0) :: 隐藏帖 (0)
|
|||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
作者 | 正文 | ||||||||||||||||||||||||||||||||||||||
发表时间:2010-07-28
最后修改:2010-07-28
MongoDB高级查询-shell篇
翻译自http://www.mongodb.org/display/DOCS/Advanced+Queries部分内容。 其实内容并不难理解,主要照顾英语苦手的兄弟们,也方便自己。 这里主要是讲MongoDB在控制台中如何进行高级查询,既有教程内容,也有ME动手实验的经验,搞懂了这些规则,对于你再使用其他语言(Java,ruby,python等)实现查询时有莫大的帮助,因为基础的是相通的,只是不同的语言实现接口略有差异而已。 还有一句想提醒大家,多动手实验,才是硬道理。
<,>,>=,<= 这四个就不用解释了,最常用的,也是最简单的。
db.collection.find({ "field" : { $gt: value } } ) // 大于 : field > value db.collection.find({ "field" : { $lt: value } } ) // 小于 : field < value db.collection.find({ "field" : { $gte: value } } ) // 大于等于 : field >= value db.collection.find({ "field" : { $lte: value } } ) // 小于等于 : field <= value
如果要同时满足多个条件,记得要这样用:
db.collection.find({ "field" : { $gt: value1, $lt: value2 } } ) // value1 < field < value
$ne 不等于
db.things.find( { x : { $ne : 3 } } )
条件相当于x<>3,即x不等于3。
$mod 取模运算
db.things.find( { a : { $mod : [ 10 , 1 ] } } )
条件相当于a % 10 == 1 即a除以10余数为1的。 $nin 不属于
db.things.find({j:{$nin: [2,4,6]}})
条件相当于 j 不等于 [2,4,6] 中的任何一个。 $in 属于
db.things.find({j:{$in: [2,4,6]}})
条件相当于j等于[2,4,6]中的任何一个。 $all 全部属于
db.things.find( { a: { $all: [ 2, 3 ] } } )
与$in类似,但必须是[]的值全部都存在。 $size 数量,尺寸
db.things.find( { a : { $size: 1 } } )
条件相当于a的值的数量是1(a必须是数组,一个值的情况不能算是数量为1的数组)。 $exists 字段存在
db.things.find( { a : { $exists : true } } ) db.things.find( { a : { $exists : false } } )
true返回存在字段a的数据,false返回不存在字度a的数据。 $type 字段类型
db.things.find( { a : { $type : 2 } } )
条件是a类型符合的话返回数据。 参数类型如下图:
Regular Expressions 正则表达式
db.customers.find( { name : /acme.*corp/i } )
类似sql中的like方法。 行开始 /^ 行结束 $/ 这里要特别特别特别地注意一点,关乎查询效率:
While /^a/, /^a./, and /^a.$/ are equivalent and will all use an index in the same way, the later two require scanning the whole string so they will be slower. The first format can stop scanning after the prefix is matched.
意思大概就是指在查询以a开头字符串时,可以有三种形式, /^a/, /^a./,和/^a.$/ 。后面两种形式会扫描整个字符串,查询速度会变慢。第一种形式会在查到符合的开头后停止扫描后面的字符。 所以要特别注意。 几个附加参数: i的意思是忽略大小写。(这个很重要,很常用) m的意思是支持多行。(不过ME没有尝试过) x的意思是扩展。(也没用过)
$or 或 (注意:MongoDB 1.5.3后版本可用)
db.foo.find( { $or : [ { a : 1 } , { b : 2 } ] } )
符合条件a=1的或者符合条件b=2的数据都会查询出来。 与其他字段一起查询:
db.foo.find( { name : "bob" , $or : [ { a : 1 } , { b : 2 } ] } )
符合条件name等于bob,同时符合其他两个条件中任意一个的数据。
Value in an Array 数组中的值 例如数据库中存在这样的数据:
{ "_id" : ObjectId("4c503405645fa23b31e11631"), "colors" : [ "red", "black" ] }
查询
db.things.find( { colors : "red" } );
即可查到上面那条数据。 $elemMatch 要素符合
t.find( { x : { $elemMatch : { a : 1, b : { $gt : 1 } } } } )
结果:
{ "_id" : ObjectId("4b5783300334000000000aa9"), "x" : [ { "a" : 1, "b" : 3 }, 7, { "b" : 99 }, { "a" : 11 } ] }
x其中一个要素符合那个检索条件就可以被检索出来。(不过一般谁用像x这样的结构去保存数据呢?)
Value in an Embedded Object 内嵌对象中的值 例如数据库中存在这样的数据:
{ "_id" : ObjectId("4c503773645fa23b31e11632"), "author" : { "name" : "Dan Brown", "age" : 38 }, "book" : "The Lost Symbol" }
查询:
db.postings.find( { "author.name" : "Dan Brown" } );
即可查到上面那条数据。 查询内嵌对象的属性,记得要加上“”,字段是“author.name”,而不是author.name。
$not 不是
db.customers.find( { name : { $not : /acme.*corp/i } } );
这是一个与其他查询条件组合使用的操作符,不会单独使用。 只要你理解了前面的查询操作即可,只是再加上了$not,结果就是得到了没有$not的相反结果集。 $where 貌似是JavaScript特用的操作符。(先不解释了) PS:竟然太长了,一篇发布不了,哎~~~~
声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|||||||||||||||||||||||||||||||||||||||
返回顶楼 | |||||||||||||||||||||||||||||||||||||||
浏览 3102 次