인덱스 (Index)
기본 구문
Create Index
db.my_collection.createIndex({address: 1})
Show Index
db.my_collection.getIndexes()
Drop Index
db.my_collection.dropIndex({address:1})
Compound Index
Indexing on Embedded Document
Indexing Option
Unique Indexes
Sparse Indexes
Unique & Sparse
Hint
Last updated
Was this helpful?