【MongoDB】The high query operation of MongoDB(二)

In the last blog, there are three query condition to be described. In the blog, we will continue to what we have leant in the last blog. 

1 $mod 

‘$mod‘ operation is able to make us to do simple mod operation, but is no need to use where sentence. 

【MongoDB】The high query operation of MongoDB(二)\

2. $ne, $in, $nin

‘$ne’ means not equal. ‘$in‘ is same as key word ‘in‘ in relationship. $nin is opsitive to ‘in‘

【MongoDB】The high query operation of MongoDB(二)

3.$or and $nor 

durning the mutiple conditions, then result will be return that it only matches one condition among condition. 

as for $noe, which is in contrast with $no, let‘s learn it from the following the picture. 

【MongoDB】The high query operation of MongoDB(二)

4. $size

$size operation will query result whose size is equailvant to size of input.

【MongoDB】The high query operation of MongoDB(二)

5. $where 

【MongoDB】The high query operation of MongoDB(二)


6. $type

$type will find the data according the type of bson field. For example:
【MongoDB】The high query operation of MongoDB(二)

The following picture is the type of bson type. 

【MongoDB】The high query operation of MongoDB(二)


【MongoDB】The high query operation of MongoDB(二)

上一篇:如何开启MySQL的远程帐号


下一篇:mysql sql长度限制解决