Storing and querying JSON from a database

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

    If all your objects have the same fields (id, age, gender, etc.) then you should store the objects as rows of some relational database (e.g. MySQL).

提交回复
热议问题