【MongoDB】The basic operation of Mongodb, Insert\Query\Delete\Update

1, Insert

MongoDB is database storing document object, the type of which is called Bson.(like JSON);

Example:  // document defination 

 【MongoDB】The basic operation of Mongodb, Insert\Query\Delete\Update

 

Now after using command[db.posts.insert(doc)], you will insert record successfully if seeing the 

The following picture.

 【MongoDB】The basic operation of Mongodb, Insert\Query\Delete\Update

2. Query 

One of the fundamental functions of MongoDB is to support query dynamically, which is the same as the troditional relational database, but more effiecieny than that. 

2.1 Query Expression Ojbects:

Query expression objects document is also a bson-structure document. For example, we could use the following the command to find all the record in the collections:

 【MongoDB】The basic operation of Mongodb, Insert\Query\Delete\Update

2.2 Query Item

In addition to Query expression object, Mongodb still support extra argument items. For example, you may only wanna return some certain fields. For example:

Example 1: return all the fields expect for tags;

 【MongoDB】The basic operation of Mongodb, Insert\Query\Delete\Update

Example 2: return dall fields expect for comments and tags=”albert”

 【MongoDB】The basic operation of Mongodb, Insert\Query\Delete\Update

Example 3: return the only field ’name’ and gender=’male’

【MongoDB】The basic operation of Mongodb, Insert\Query\Delete\Update

3. Remove 

Removing operation is used to remove records from the collections.Example:

 【MongoDB】The basic operation of Mongodb, Insert\Query\Delete\Update

【MongoDB】The basic operation of Mongodb, Insert\Query\Delete\Update

Advice: It’s better to use _id as condition when executing the remove operation/

Attention: In some conditions, when you are ready to remove one record, maybe in the meantime the update operation is updating this record which makes the reomve operation failed. As for this case, you could add the $atomic field to avoid this case. For example:

【MongoDB】The basic operation of Mongodb, Insert\Query\Delete\Update

4. Update

4.1 Grammar 

【MongoDB】The basic operation of Mongodb, Insert\Query\Delete\Update

Argument Description:

Criteria: the object used to set query conditions

Objnew: Object used to set update content. 

Upsert: if record exists, it will update it. Else insert a new record.

Multi: if multi matches conditoin, it will update all the records. 

 Attention: By fault, mongoDB will update the first record that matches the query condition.

 【MongoDB】The basic operation of Mongodb, Insert\Query\Delete\Update

 

 

 

【MongoDB】The basic operation of Mongodb, Insert\Query\Delete\Update

上一篇:存储过程/游标/mysql 函数


下一篇:JDK6中LinkedBlockingQueue中的锁机制