文档基本插入_隐式创建

2022/4/10 6:13:53

本文主要是介绍文档基本插入_隐式创建,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

文档(document)的数据结构和 JSON 基本一样。
所有存储在集合中的数据都是 BSON 格式。

  

文档的插入
单个文档插入
使用insert() 或 save() 方法向集合中插入文档,语法如下:
db.collection.insert( <document or array of documents>, { writeConcern: <document>, ordered: <boolean> } )
db.dss.insert({"name":"dss"})

  

 

 

 

 

批量插入
db.collection.insertMany( [ <document 1> , <document 2>, ... ], { writeConcern: <document>, ordered: <boolean> } )
db.dss.insertMany([{"name":"dss"},{"name":"dss1"}])

python中列表套字节的方式

 



这篇关于文档基本插入_隐式创建的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程