1. 程式人生 > >mongoDB 大於,小於,大於等於,小於等於

mongoDB 大於,小於,大於等於,小於等於

轉載自:http://blog.163.com/ji_1006/blog/static/10612341201311271384351/
1 ) . 大於,小於,大於或等於,小於或等於


$gt:大於
$lt:小於
$gte:大於或等於
$lte:小於或等於

例子:

db.collection.find({ "field" : { $gt: value } } ); // greater than : field > value
db.collection.find({ "field" : { $lt: value } } ); // less than : field < value
db.collection.find({ "field" : { $gte: value } } ); // greater than or equal to : field >= value

db.collection.find({ "field" : { $lte: value } } ); // less than or equal to : field <= value

如查詢j大於3,小於4:

db.things.find({j : {$lt: 3}});
db.things.find({j : {$gte: 4}});

也可以合併在一條語句內:

db.collection.find({ "field" : { $gt: value1, $lt: value2 } } ); // value1 < field < value

2) 不等於 $ne

例子:

db.things.find( { x : { $ne : 3 } } );


3) in 和 not in ($in $nin)

語法:
db.collection.find( { "field" : { $in : array } } );

例子:

db.things.find({j:{$in: [2,4,6]}});
db.things.find({j:{$nin: [2,4,6]}});


4) 取模運算$mod

如下面的運算:
db.things.find( "this.a % 10 == 1")

可用$mod代替:

db.things.find( { a : { $mod : [ 10 , 1 ] } } )


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之類的,他們建議建立一個欄位來儲存元素的數量。

You cannot use $size to find a range of sizes (for example: arrays with more than 1 element). If you need to query for a range, create an extra size field that you increment when you add elements.

7)$exists

$exists用來判斷一個元素是否存在:

如:

db.things.find( { a : { $exists : true } } ); // 如果存在元素a,就返回
db.things.find( { a : { $exists : false } } ); // 如果不存在元素a,就返回

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"})

如果不用點,那就需要用下面這句才能匹配:

db.blog.findOne({"author" : {"name" : "Jane", "id" : 1}})

下面這句:

db.blog.findOne({"author" : {"name" : "Jane"}})

是不能匹配的,因為mongodb對於子物件,他是精確匹配。

13) 元操作符 $not 取反

如:

db.customers.find( { name : { $not : /acme.*corp/i } } );db.things.find( { a : { $not : { $mod : [ 10 , 1 ] } } } ); mongodb還有很多函式可以用,如排序,統計等,請參考原文。