mongodb 索引创建
作者:互联网
1. 多键唯一索引
a.loc 和 a.qty 为符合多键索引
db.collection.createIndex( { "a.loc": 1, "a.qty": 1 }, { unique: true } )
如:
db.getCollection("Name,idcardNo").createIndex( { "Name": 1, "idcardNo": 1 }, { unique: true } )
2 单字段唯一索引
db.members.createIndex( { "user_id": 1 }, { unique: true } )
3 普通索引
db.collection.createIndex( { name: -1 } )
标签:unique,创建,db,qty,索引,mongodb,createIndex,true 来源: https://www.cnblogs.com/leolzi/p/16095963.html