使用NoSQL如何创建数据库NoSQL(NoSQL = Not Only SQL ),意即"不仅仅是SQL"。在现代的计算系统上每天网络上都会产生庞大的数据量。使用NoSQL如何插入文档?
2条回答
edgarrrr 2023-09-28 14:56关注db.collection.insertOne( <document>, { writeConcern: <document> } )本回答被题主选为最佳回答 , 对您是否有帮助呢?评论 打赏 举报解决 1无用
使用NoSQL如何创建数据库NoSQL(NoSQL = Not Only SQL ),意即"不仅仅是SQL"。在现代的计算系统上每天网络上都会产生庞大的数据量。使用NoSQL如何插入文档?
db.collection.insertOne(
<document>,
{
writeConcern: <document>
}
)