码迷,mamicode.com
首页 > 数据库 > 详细

MongoDB创建索引

时间:2018-11-26 00:10:06      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:相同   nbsp   drop   uniq   tin   默认   情况下   查看   联合   

创建索引:

db.集合.ensureIndex({属性:1}) #1表示升序,-1表示降序

具体操作:

  db.test.ensureIndex({name:1})

MongoDB在默认情况下索引字段的值可以相同

创建唯一索引(索引的值是唯一的)

db.test.ensureIndex({name:1},{"unique":true})

创建联合索引:

db.test.ensureIndex({name:1,age:1})

查看当前集合的所有索引:

db.test.getindexes()

删除索引:

db.test.dropIndex({"索引名称":1})

 

MongoDB创建索引

标签:相同   nbsp   drop   uniq   tin   默认   情况下   查看   联合   

原文地址:https://www.cnblogs.com/zhiliang9408/p/10017906.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!