mongodb 學習筆記 07,mongodb學習筆記
- mongoexport 匯出json或者csv格式
- mongoimport 匯入json或者csv
- mongodump 匯出二進位bson結構資料以及索引資訊
- mongorestore 匯入二進位檔案
mongoexport
-h 主機--port 連接埠號碼-u 使用者名稱-p 密碼-d 庫名-c 表名-f field1,field..... 匯出的欄位-q 查詢條件 -o 匯出檔案名稱--csv 等同於 --type=csv 匯出csv格式,一定要指定-f 匯出欄位才能匯出csv
例子: 把test資料庫中my表 中的my_id<200的_id跟username 匯出成csv格式
mongoexport -u test -p 64823723zk -d test -c my -q {my_id:{'$lt':200}} --type=csv -f _id,username,a -o my.csv
mongoimport
-d 匯入的資料庫-c 匯入的表--type csv/json--file 檔案路徑
例子: 向test資料庫中stu表中匯入stu.json 中的資料
mongoimport -u test -p 123 -d test -c stu --type json --file ./stu.json
mongodump
-d 庫名-c 表名-o 匯出路徑-f field1,field..... 欄位名
例子: 把test資料庫的my表匯出二進位bson結構資料以及索引資訊儲存到dump目錄下
./mongodump -u test -p 123 -d test -c my -o ./dump
mongorestore
-d 資料庫--dir= bson跟索引資訊存放的目錄
例子:
mongorestore -u test -p 123 -d test --dir=./dump/test/
著作權聲明:本文為博主原創文章,未經博主允許不得轉載。