32e2 发表于 2014-9-24 10:09:28

【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. GroupThe 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. Distinctit's the same as the distinct in the relational database.



4. pageThe mongodb supports to use skip and limit to query by page.



5. Cursors and Cursor Methods


6. $query/$orderby/$explain

页: [1]
查看完整版本: 【MongoDB】The high query operation of MongoDB(三)