Proper way to import json file to mongo

前端 未结 4 850
半阙折子戏
半阙折子戏 2020-12-08 04:12

I\'ve been trying to use mongo with some data imported, but I\'m not able to use it properly with my document description.

This is an example of the .json I import u

4条回答
  •  渐次进展
    2020-12-08 04:47

    Importing a JSON

    The command mongoimport allows us to import human readable JSON in a specific database & a collection. To import a JSON data in a specific database & a collection, type mongoimport -d databaseName -c collectionName jsonFileName.json

提交回复
热议问题