>데이터 베이스 >MySQL 튜토리얼 >非关系型数据库(Nosql)之mongodb:普通索引,唯一索引

非关系型数据库(Nosql)之mongodb:普通索引,唯一索引

WBOY
WBOY원래의
2016-06-07 16:04:561249검색

一:普通索引 1 创建一个新的数据库 use toto; switched to db toto show dbs; admin(empty) local0.078GB use toto; switched to db toto db toto 2 创建 100 万条数据 for(var i=1; i = 1000000; i++){ ...db.c3.insert({name:zhangsan,age:i}); ... } db.

一:普通索引

1创建一个新的数据库

> use toto;

switched to db toto

> show dbs;

admin (empty)

local 0.078GB

> use toto;

switched to db toto

> db

toto

2创建100万条数据

> for(var i=1; i

...db.c3.insert({name:"zhangsan",age:i});

... }

>db.c3.count();

\

3无索引查找

>db.c3.find({age:500000}).explain();

\

4age字段创建一个索引

db.c3.ensureIndex({age:1});

这时候可以看到服务器端有相应的输出

 

5有索引查找

db.c3.find({age:500000}).explain();

\

二:唯一索引

1删除索引:

db.c3.dropIndex({age:1});

2创建唯一索引

db.c3.ensureIndex({age:1},{unique:true});

\

db.c3.find({age:500000}).explain();

\

3在某个key上建立了唯一索引之后,这个对应的值必须唯一,添加不进去重复的了。

db.c3.insert({name:”lisi”,age:100});

\

4 show collections;

5 db.system.indexes.find();

\

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.