标签:相同 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})
标签:相同 nbsp drop uniq tin 默认 情况下 查看 联合
原文地址:https://www.cnblogs.com/zhiliang9408/p/10017906.html