Storing and querying JSON from a database

后端 未结 6 1458
日久生厌
日久生厌 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:13

    A Couchbase N1QL query will look like this:

    SELECT * FROM people WHERE age >= 12;
    

    See https://query-tutorial.couchbase.com/tutorial/#1 for more details.

提交回复
热议问题