03-【MongoDB入门教程】导入数据

前端之家收集整理的这篇文章主要介绍了03-【MongoDB入门教程】导入数据前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

导入数据

本教程使用test数据库和restaurants集合为例进行讲解。下面是restaurants的一个文档结构示例:

{
  "address": {
     "building": "1007","coord": [ -73.856077,40.848447 ],"street": "Morris Park Ave","zipcode": "10462"
  },"borough": "Bronx","cuisine": "Bakery","grades": [
     { "date": { "$date": 1393804800000 },"grade": "A","score": 2 },{ "date": { "$date": 1378857600000 },"score": 6 },{ "date": { "$date": 1358985600000 },"score": 10 },{ "date": { "$date": 1322006400000 },"score": 9 },{ "date": { "$date": 1299715200000 },"grade": "B","score": 14 }
  ],"name": "Morris Park Bake Shop","restaurant_id": "30075445"
}

导入例子数据

在进行操作之前,我们需要例子数据,在这里下载数据文件dataset.json

导入数据到集合

在命令行中执行mongoimport命令将上面下载的数据文件中的数据导入到test数据库restaurants集合中。如果此集合已经存在,下面的操作会先删除

mongoimport --db test --collection restaurants --drop --file C:\data\dataset.json

mongoimport命令连接到本机运行的mongod实例,如果要把数据导到不同主机,不同端口的实例,可以指定主机和端口,使用参数 --host--port

数据导入后,你可以用mongo命令连接到实例,使用show dbsuse testshow collectionsdb.restaurants.find()命令查看导入的数据。

原文链接:https://www.f2er.com/nosql/203878.html

猜你在找的NoSQL相关文章