在本章中,我們將學習如何在MongoDB集合中插入文件。
要將資料插入到 MongoDB 集合中,需要使用 MongoDB 的 insert()
或save()
方法。
語法
insert()
命令的基本語法如下:
>db.COLLECTION_NAME.insert(document)
範例
>db.mycol.insert({
_id: 100,
title: 'MongoDB Overview',
description: 'MongoDB is no sql database',
by: 'yiibai tutorials',
url: 'https://www.tw511.com',
tags: ['mongodb', 'database', 'NoSQL'],
likes: 100,
})
這裡mycol
是集合的名稱,在前一章中所建立的。如果資料庫中不存在集合,則MongoDB將建立此集合,然後將文件插入到該集合中。
在插入的文件中,如果不指定_id
引數,那麼 MongoDB 會為此文件分配一個唯一的ObjectId。
_id
為集合中的每個文件唯一的12
個位元組的十六進位制數。 12
位元組劃分如下 -
_id: ObjectId(4 bytes timestamp, 3 bytes machine id, 2 bytes process id,
3 bytes incrementer)
要在單個查詢中插入多個文件,可以在insert()
命令中傳遞文件陣列。如下所示 -
> db.mycol.insert([
{
_id: 101,
title: 'MongoDB Guide',
description: 'MongoDB is no sql database',
by: 'yiibai tutorials',
url: 'https://www.tw511.com',
tags: ['mongodb', 'database', 'NoSQL'],
likes: 100
},
{
_id: 102,
title: 'NoSQL Database',
description: "NoSQL database doesn't have tables",
by: 'yiibai tutorials',
url: 'https://www.tw511.com',
tags: ['mongodb', 'database', 'NoSQL'],
likes: 210,
comments: [
{
user:'user1',
message: 'My first comment',
dateCreated: new Date(2017,11,10,2,35),
like: 0
}
]
},
{
_id: 104,
title: 'Python Quick Guide',
description: "Python Quick start ",
by: 'yiibai tutorials',
url: 'https://www.tw511.com',
tags: ['Python', 'database', 'NoSQL'],
likes: 30,
comments: [
{
user:'user1',
message: 'My first comment',
dateCreated: new Date(2018,11,10,2,35),
like: 590
}
]
}
])
要插入文件,也可以使用db.post.save(document)
。 如果不在文件中指定_id
,那麼save()
方法將與insert()
方法一樣自動分配ID的值。如果指定_id
,則將以save()
方法的形式替換包含_id
的文件的全部資料。
db.collection.insertOne()
方法將單個文件插入到集合中。以下範例將新文件插入到庫存集合中。 如果文件沒有指定_id
欄位,MongoDB會自動將_id
欄位與ObjectId
值新增到新文件。
db.inventory.insertOne(
{ item: "canvas", qty: 100, tags: ["cotton"], size: { h: 28, w: 35.5, uom: "cm" } }
)
db.collection.insertOne()
方法返回包含新插入的文件的`_id```欄位值的文件。
執行結果如下 -
> db.inventory.insertOne(
... { item: "canvas", qty: 100, tags: ["cotton"], size: { h: 28, w: 35.5, uom: "cm" } }
... )
{
"acknowledged" : true,
"insertedId" : ObjectId("5955220846be576f199feb55")
}
>
db.collection.insertMany()
方法將多個文件插入到集合中,可將一系列文件傳遞給db.collection.insertMany()
方法。以下範例將三個新文件插入到庫存集合中。如果文件沒有指定_id
欄位,MongoDB會向每個文件新增一個ObjectId值的_id
欄位。
db.inventory.insertMany([
{ item: "journal", qty: 25, tags: ["blank", "red"], size: { h: 14, w: 21, uom: "cm" } },
{ item: "mat", qty: 85, tags: ["gray"], size: { h: 27.9, w: 35.5, uom: "cm" } },
{ item: "mousepad", qty: 25, tags: ["gel", "blue"], size: { h: 19, w: 22.85, uom: "cm" } }
])
insertMany()
返回包含新插入的文件_id
欄位值的文件。執行結果如下 -
> db.inventory.insertMany([
... { item: "journal", qty: 25, tags: ["blank", "red"], size: { h: 14, w: 21, uom: "cm" } },
... { item: "mat", qty: 85, tags: ["gray"], size: { h: 27.9, w: 35.5, uom: "cm" } },
... { item: "mousepad", qty: 25, tags: ["gel", "blue"], size: { h: 19, w: 22.85, uom: "cm" } }
... ])
{
"acknowledged" : true,
"insertedIds" : [
ObjectId("59552c1c46be576f199feb56"),
ObjectId("59552c1c46be576f199feb57"),
ObjectId("59552c1c46be576f199feb58")
]
}
>