mongodb備忘

1.遠程拷貝數據庫 數據庫

db.copyDatabase(fromdb, todb, fromhost, [dbuser, dbpassword])

 

2.數據庫備份/恢復(導出/導入) mongoexport, mongoimport, mongodump, mongorestorespa

3.查詢指定列數據:rest

db.collection.find({},{column:1, _id:0})

4.創建索引code

db.table.createIndex(column:1)         //升序
db.table.createIndex(column:-1)        //降序

5.刪除dbblog

use somedb
db.dropDatabase()
相關文章
相關標籤/搜索