MongoDB的基础查询和索引操作⽅法总结查询操作
1、查询所有记录
db.userInfo.find();
相当于:
select* from userInfo;
2、查询去掉后的当前聚集集合中的某列的重复数据
db.userInfo.distinct("name");
会过滤掉name中的相同数据
相当于:
select disttince name from userInfo;
3、查询age = 22的记录
db.userInfo.find({"age": 22});
相当于:
select * from userInfo where age = 22;
4、查询age > 22的记录
db.userInfo.find({age: {$gt: 22}});
相当于:
select * from userInfo where age >22;
5、查询age < 22的记录
db.userInfo.find({age: {$lt: 22}});
相当于:
select * from userInfo where age <22;
6、查询age >= 25的记录
db.userInfo.find({age: {$gte: 25}});
相当于:
select * from userInfo where age >= 25;
7、查询age <= 25的记录
db.userInfo.find({age: {$lte: 25}});
相当于:
select * from userInfo where age <= 25;
8、查询age >= 23 并且 age <= 26
db.userInfo.find({age: {$gte: 23, $lte: 26}});
相当于:
select * from userInfo where age >=23 and age <= 26;
9、查询name中包含 mongo的数据
db.userInfo.find({name: /mongo/});
相当于:
select * from userInfo where name like ‘%mongo%';
10、查询name中以mongo开头的
db.userInfo.find({name: /^mongo/});
相当于:
select * from userInfo where name like ‘mongo%';
11、查询指定列name、age数据
db.userInfo.find({}, {name: 1, age: 1});
相当于:
select name, age from userInfo;
当然name也可以⽤true或false,当⽤ture的情况下河name:1效果⼀样,如果⽤false就是排除name,显⽰name以外的列信息。
12、查询指定列name、age数据, age > 25
db.userInfo.find({age: {$gt: 25}}, {name: 1, age: 1});
相当于:
select name, age from userInfo where age >25;
13、按照年龄排序
升序:
db.userInfo.find().sort({age: 1});mysql删除重复的数据保留一条
降序:
db.userInfo.find().sort({age: -1});
14、查询前5条数据
db.userInfo.find().limit(5);
相当于:
select * from (select * from userInfo) where rownum < 6;//oracle
select * from userInfo limit 5;//mysql
15、查询10条以后的数据
db.userInfo.find().skip(10);
相当于:
select * from userInfo where id not in (select id from (select * from userInfo) where  and rownum < 11);
16、查询在5-10之间的数据
db.userInfo.find().limit(10).skip(5);
可⽤于分页,limit是pageSize,skip是第⼏页*pageSize
17、or与查询
db.userInfo.find({$or: [{age: 22}, {age: 25}]});
相当于:
select * from userInfo where age = 22 or age = 25;
18、查询第⼀条数据
db.userInfo.findOne();
db.userInfo.find().limit(1);
相当于:
select * from (select * from userInfo) where and rownum < 2
19、查询某个结果集的记录条数
db.userInfo.find({age: {$gte: 25}}).count();
相当于:select count(*) from userInfo where age >= 20;
索引
1、创建索引
sureIndex({username: 1});
在MongoDB中,我们同样可以创建复合索引,如下:
sureIndex({username: 1, age: -1});
该索引被创建后,基于username和age的查询将会⽤到该索引,或者是基于username的查询也会⽤到该索引,但是只是基于age的查询将不会⽤到该复合索引。因此可以说,如果想⽤到复合索引,必须在查询条件中包含复合索引中的前N个索引列。然⽽如果查询条件中的键值顺序和复合索引中的创建顺序不⼀致的话,MongoDB可以智能的帮助我们调整该顺序,以便使复合索引可以为查询所⽤。如:
对于上⾯⽰例中的查询条件,MongoDB在检索之前将会动态的调整查询条件⽂档的顺序,以使该查询可以⽤到刚刚创建的复合索引。
2、创建唯⼀索引
在缺省情况下创建的索引均不是唯⼀索引。下⾯的⽰例将创建唯⼀索引,如:
如果再次插⼊userid重复的⽂档时,MongoDB将报错,以提⽰插⼊重复键,如:
E11000 duplicate key error index: st.$userid_1 dup key: { : 5.0 }
如果插⼊的⽂档中不包含userid键,那么该⽂档中该键的值为null,如果多次插⼊类似的⽂档,MongoDB将会报出同样的错误,如:
E11000 duplicate key error index: st.$userid_1 dup key: { : null }
如果在创建唯⼀索引时已经存在了重复项,我们可以通过下⾯的命令帮助我们在创建唯⼀索引时消除重复⽂档,仅保留发现的第⼀个⽂档,如:
--先删除刚刚创建的唯⼀索引。
--插⼊测试数据,以保证集合中有重复键存在。
--创建唯⼀索引,并消除重复数据。
--查询结果确认,重复的键确实在创建索引时已经被删除。
{ "_id" : ObjectId("4fe823c180144abd15acd52e"), "userid" : 5 }
我们同样可以创建复合唯⼀索引,即保证复合键值唯⼀即可。如:
3、查询当前聚集集合所有索引
Indexes();
4、查看总索引记录⼤⼩
alIndexSize();
5、读取当前集合的所有index信息
Index();
6、删除指定索引
db.users.dropIndex("username":1);
7、删除所有索引索引
db.users.dropIndexes();

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。