Storing and querying JSON from a database

后端 未结 6 1392
日久生厌
日久生厌 2021-01-30 10:25

I\'ve heard about MongoDB, but I\'m not sure I fully understand the concept.

If I have multiple JSON objects stored in MongoDB:

[{\"id\": \"peter\",
  \         


        
6条回答
  •  清歌不尽
    2021-01-30 11:30

    A mongodb shell query for that might look like this:

    db.people.find({"age": {gt:12 }});
    

提交回复
热议问题