Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Implementation of Group packet query of MongoDB under MongoVUE

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)06/01 Report--

We know that MongoDB is a non-relational database, so its query method is very different from the standard structured query language SQL. But no matter how complex a structure it is, when it passes through the hands of the developer, it can only become the structure that the customer wants. What we are going to talk about today is how to MongoDB Group grouping query under MongoVUE.

The query format of MongoVUE is as follows:

Db.collection.group ({key, reduce, initial, [keyf,] [cond,] finalize})

From the above, we can see that in order to realize the grouping query of MongoDB, key (grouping field), cond (grouping condition), refuce (grouping calculation) and initial (initial condition) are the indispensable values of MongoDB grouping query. Next, let's take a look at how to implement the grouping query function of MongoDB under MongoVUE:

(1) Select the tables to be grouped, select "Collection--Group", and turn on the grouping function.

(2) enter the fields to be grouped under Key and the filter conditions for grouping under Conditions. Open the ReduceTab page, enter "{" count ": 0}" in the Initial Value output, and enter at the following Reduce function:

FunctionReduce (doc, out) {

Out.count + = 1

}

Select GO, which pops up the grouping result of MongoDB.

(3) at Shell, type out the query sentence of MongoDB automatically.

Db.EQUIPMENT.group ({

Key: {

"equipType": true

}

Cond: {

"siteId": "Beijing"

}

Initial: {

"count": 0

}

Reduce: function Reduce (doc, out) {

Out.count + = 1

}

Finalize: function Finalize (out) {

Return out

}

});

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report