首页 > 代码库 > 【MongoDB】The high query operation of MongoDB(三)

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

1, Sort 

Needless to say, mongodb also support to sort data. THe positive one means sorting by asc order and negetive means by desc.


2. Group

The grammar of group:


Description Of Argument:

key: The field need to group 

cond: query condition 

Initial: initialize the counter of group

Redue: generally statistic operation

Finalize: further operation after group, for exampe calcuate the average. 

3.

3. Distinct

it‘s the same as the distinct in the relational database.



4. page

The mongodb supports to use skip and limit to query by page.



5. Cursors and Cursor Methods



6. $query/$orderby/$explain



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