MongoDB学习笔记

数据库的创建 use dbname Insert insertOne:插入一条数据到collection中 db.inventory.insertOne( { item: "canvas", qty: 100, tags: ["cotton"], size: { h: 28, w: 35.5, uom: "cm" } } ) insertMany:插入多条数据到collection中 db
相关文章
相关标签/搜索