* 启动 mongodb 服务
brew services start mongodb
* 创建集合,并自动生成 `_id` 的唯一索引
db.createCollection(name, {autoIndexId: true})
* 插入一条数据
db.collection.insertOne({});
* 插入多条数据
db.collection.insertMany([{}]);
* 查询
db.collection.find();
db.collection.findOne();
网友评论