MongoDB 清除重複數據

建立惟一索引並刪除重複的數據html coll.ensureIndex({productid:1}) // 在productid上創建普通索引 coll.ensureIndex({district:1, plate:1}) // 多字段索引 coll.ensureIndex({productid:1}, {unique:true}) // 惟一索引 coll.ensureIndex({produc
相關文章
相關標籤/搜索