MongoDB資料庫詳解
阿新 • • 發佈:2019-02-12
MongoDB CRUD 操作
建立操作
MongoDB中提供了以下方法來插入文件到一個集合:
- db.collection.insert()
- db.collection.insertOne() New in version 3.2
- db.collection.insertMany() New in version 3.2
示例:
db.products.insert( { item: "card", qty: 15 } )
{ "_id" : ObjectId("5063114bd386d8fadbd6b004"), "item" : "card",
"qty" : 15 }
執行操作時 ObjectId 物件的取值由當前主機和時間決定
db.products.insert( { _id: 10, item: "box", qty: 20 } )
{ "_id" : 10, "item" : "box", "qty" : 20 }
查詢存在某個列的記錄:
db.SecEvent.find({"infosecuritysub": {"$exists": true}})
刪除掉某個欄位:
db.SecEvent.update({},{$unset:{'infosecuritysub1':''}},false, true)