MongoDB 命令收集

2018-07-06  本文已影响11人  wlianfu
* 启动 mongodb 服务
brew services start mongodb

* 创建集合,并自动生成 `_id` 的唯一索引
db.createCollection(name, {autoIndexId: true})

* 插入一条数据
db.collection.insertOne({});

* 插入多条数据
db.collection.insertMany([{}]);

* 查询
db.collection.find();
db.collection.findOne();
上一篇下一篇

猜你喜欢

热点阅读