8.使用如下语句,建立集合collectionIndex,并插入包含用户名(usename)和序号 (uno)的10万条数据,即10万个文档。
时间: 2024-05-11 13:19:11 浏览: 49
构建索引并实现对文档集合的检索
以下是使用MongoDB Shell建立集合collectionIndex,并插入10万条数据的代码:
1. 连接MongoDB数据库:
```
mongo
```
2. 选择要使用的数据库:
```
use dbName
```
3. 创建集合collectionIndex:
```
db.createCollection("collectionIndex")
```
4. 插入10万条数据:
```
for (var i = 1; i <= 100000; i++) {
db.collectionIndex.insertOne({ usename: "user" + i, uno: i });
}
```
以上代码会循环插入10万条数据,每条数据包含一个用户名和一个序号。其中,用户名为"user" + 序号,序号从1开始递增。
阅读全文